https://github.com/marioidival/crud-mongodb
Create a simple Go app to save contacts on Mongodb
https://github.com/marioidival/crud-mongodb
api golang mongodb twitch
Last synced: 3 months ago
JSON representation
Create a simple Go app to save contacts on Mongodb
- Host: GitHub
- URL: https://github.com/marioidival/crud-mongodb
- Owner: marioidival
- License: mit
- Created: 2018-09-21T22:32:49.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-09-23T17:11:31.000Z (almost 7 years ago)
- Last Synced: 2025-03-27T17:47:11.081Z (4 months ago)
- Topics: api, golang, mongodb, twitch
- Language: Go
- Size: 207 KB
- Stars: 6
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: History.md
- License: LICENSE
Awesome Lists containing this project
README
# 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