Categorygithub.com/bansaltushar014/GoLang_CRUD
repositorypackage
0.0.0-20220221192922-bc1ca5e8583f
Repository: https://github.com/bansaltushar014/golang_crud.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author

# README

About

Go Lang crud application, It has three APIs which helps to fetch data from database, update database and post database.

Setup

APIs

Fetch data from mongoDB

GET

localhost:9000?Title=ramayan

Add data to mongoDB

POST - JSON in raw body (postman)

localhost:9000

{
    "Title": "ramayan",
    "Body": "legacy"
}
Update book through ID

Update

localhost:9000

{
    "Title": "ramayan",
    "Body": "legacy2"
}