1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21# Create a simple CRUD with MongoDB. [](https://travis-ci.org/marioidival/crud-mongodb) [](https://codeclimate.com/github/marioidival/crud-mongodb/maintainability) [](https://codeclimate.com/github/marioidival/crud-mongodb/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