A RESTful API with Go
It is build with golang, gofiber and mongodb
# Download this project
go get github.com/Devansh-365/gofiber# Build and Run
cd gofiber
go build
./gofiber
# API Endpoint : http://127.0.0.1:3000GET: Get all users
GET: Get a user
POST: Create user
PUT: Update a userDELETE: Delete a user
- Support basic REST APIs.
- Support Authentication with user for securing the APIs.
- Write the tests for all APIs.
- Organize the code with packages
- Make docs with GoDoc
- Building a deployment process