Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 343 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 343 Bytes

Personal Microproject

Learning Golang

Building a simple REST API with CRUD operations.


Stack:

  • Golang
  • Gorm
  • Postgresql
  • Docker

Design:

  • GET /api/orders
  • GET /api/orders/{id}
  • POST /api/orders
  • DELETE /api/orders/{id}
  • PUT /api/orders/{id}