crud-mongodb icon indicating copy to clipboard operation
crud-mongodb copied to clipboard

Create a simple Go app to save contacts on Mongodb

Create a simple CRUD with MongoDB. Build Status Maintainability Test Coverage

Create a contacts app with Golang and MongoDB.

ENDPOINTS

GET /contacts/

Return a list of all contacts

GET /contacts/{id}/

Return a specific contact

POST /contacts/

Create a contact

PUT /contacts/{id}/

Update a contact

DELETE /contacts/{id}/

Remove a contact