Go TODO List CRUD API Tech Stack Golang MongoDB Description This is a simple CRUD API built on top of a Mongo database. Endpoints GET /todos --Get All Todos GET /todos/{id} -- Get a Single Todo POST /todos --Create a Todo PUT /todos/{id} --Update a Todo DELETE /todos/{id} --Delete a Todo