๐Ÿ“ฆ marioidival / crud-mongodb

Create a simple Go app to save contacts on Mongodb

โ˜… 6 stars โ‘‚ 1 forks ๐Ÿ‘ 6 watching โš–๏ธ MIT License
apigolangmongodbtwitch
๐Ÿ“ฅ Clone https://github.com/marioidival/crud-mongodb.git
HTTPS git clone https://github.com/marioidival/crud-mongodb.git
SSH git clone git@github.com:marioidival/crud-mongodb.git
CLI gh repo clone marioidival/crud-mongodb
Mario idival Mario idival Update travis file, change codeclimate things caff7f9 7 years ago ๐Ÿ“ History
๐Ÿ“‚ master View all commits โ†’
๐Ÿ“ dao
๐Ÿ“ model
๐Ÿ“ vendor
๐Ÿ“„ .travis.yml
๐Ÿ“„ cover.sh
๐Ÿ“„ History.md
๐Ÿ“„ LICENSE
๐Ÿ“„ main_test.go
๐Ÿ“„ main.go
๐Ÿ“„ Procfile
๐Ÿ“„ README.md
๐Ÿ“„ README.md

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