Implementation of REST API with gokit framework
- GIN
- GORM
- SQLITE
[GIN-debug] GET /products --> main.getProducts (3 handlers)
[GIN-debug] GET /products/:id --> main.getProductById (3 handlers)
[GIN-debug] POST /products --> main.insertProduct (3 handlers)
[GIN-debug] PUT /products/:id --> main.updateProduct (3 handlers)
[GIN-debug] DELETE /products/:id --> main.deleteProduct (3 handlers)
[GIN-debug] Listening and serving HTTP on :1991