Create a simple CRUD with MongoDB.

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