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
- Host: GitHub
- URL: https://github.com/voidcoefficient/go-fiber-rest
- Owner: voidcoefficient
- Created: 2021-12-29T22:04:20.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2021-12-29T22:43:26.000Z (about 4 years ago)
- Last Synced: 2025-02-26T03:35:47.131Z (12 months ago)
- Language: Go
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```