Skip to content

Latest commit

 

History

History
52 lines (34 loc) · 758 Bytes

README.md

File metadata and controls

52 lines (34 loc) · 758 Bytes

user-crud

The project is for managed the users i.e. Fetch, create, updat, delete users

Tech Stack

Server: Golang.

API Reference

Get all items

  GET /user-crud/get-users

Add single user

  Post /user-crud/add-user

Update user by userID

 Put /user-crud/update-user/{userID}

Delete user by userID

 Put /user-crud/delete-user/{userID}

Installation

 - Clone the project
 - go mod tidy
 - go run main.go

Roadmap

Designing 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....