An open API service indexing awesome lists of open source software.

https://github.com/febrihidayan/simple-crud-golang


https://github.com/febrihidayan/simple-crud-golang

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

# CRUD MySQL Golang API

```sql
CREATE TABLE `employee` (
`id` int(10) unsigned NOT NULL PRIMARY KEY AUTO_INCREMENT,
`name` varchar(30) NOT NULL,
`city` varchar(30) NOT NULL
)
```