Skip to content

Latest commit

 

History

History
38 lines (25 loc) · 717 Bytes

README.md

File metadata and controls

38 lines (25 loc) · 717 Bytes

GO CRUD

This is a simple repository for a simple REST API made with Go using the following stack:

Getting started

You can run make dev if you are using a unix base os to get the project running.

If you are on Windows, you can try installing make with chocolatey and then running:

choco install make
make dev

Routes

Users

  • [GET] /users

    • Return all current users
  • [POST] /users

    • Add a new user to database
    • Expected data:
    {
      "name": "Example",
      "email": "example@test.com",
      "password": "example"
    }