The project is for managed the users i.e. Fetch, create, updat, delete users
Server: Golang.
GET /user-crud/get-users Post /user-crud/add-user Put /user-crud/update-user/{userID} Put /user-crud/delete-user/{userID} - Clone the project
- go mod tidy
- go run main.goDesigning this project with beginners in mind.
- V1 = Creating Server and writing CRUD api without using DB
- V2 = Docerize the app.
- V3 = Used Database for creating CRUD API's.
- V4 = Created Middleware
- V5 = More improvement....