├── .gitignore ├── LICENSE ├── README.md ├── client.go ├── connect.go ├── create.go ├── db.go ├── delete.go ├── http.go ├── select.go └── update.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/README.md -------------------------------------------------------------------------------- /client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/client.go -------------------------------------------------------------------------------- /connect.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/connect.go -------------------------------------------------------------------------------- /create.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/create.go -------------------------------------------------------------------------------- /db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/db.go -------------------------------------------------------------------------------- /delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/delete.go -------------------------------------------------------------------------------- /http.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/http.go -------------------------------------------------------------------------------- /select.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/select.go -------------------------------------------------------------------------------- /update.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pouriya73/Building-basic-RESTful-CRUD-with-Golang-MySQL/HEAD/update.go --------------------------------------------------------------------------------