This is a simple repository for a simple REST API made with Go using the following stack:
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
-
[GET] /users
- Return all current users
-
[POST] /users
- Add a new user to database
- Expected data:
{ "name": "Example", "email": "example@test.com", "password": "example" }