An open API service indexing awesome lists of open source software.

https://github.com/voidcoefficient/go-fiber-rest

REST API built with Go Fiber
https://github.com/voidcoefficient/go-fiber-rest

Last synced: 11 months ago
JSON representation

REST API built with Go Fiber

Awesome Lists containing this project

README

          

# `go-fiber-rest`

## Specification

```
GET /api/products Return all products
GET /api/products/:id Return one product
POST /api/products Creates new product (requires JSON body)
PUT /api/products/:id Updates product (requires JSON body)
DELETe /api/products/:id Deletes product
```