Skip to content

To-do list REST API developed in Go using net/http library and MongoDB

Notifications You must be signed in to change notification settings

carolrochafloro/go-tasks-api

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

34 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Task manager - REST API in Go

My goal here is to create my first REST API in Go following the modules layout available in the documentation and using MongoDB.

It's a simple CRUD application that exposes the following endpoints:

User

POST /user/new
GET /user/{id}
PUT /user/{id}
DELETE /user/{id}

Login

POST /login
POST /logout

Task

POST /tasks/new
GET /tasks/{id}
GET /tasks/
PUT /tasks/{id}
DELETE /tasks/{id}

Dependencies

Commands

About

To-do list REST API developed in Go using net/http library and MongoDB

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages