package
0.0.0-20240728082614-9e206d71c617
Repository: https://github.com/prembhaskal/go_practice.git
Documentation: pkg.go.dev
# README
useful commands
- GET
curl http://localhost:8080/albums
- GET single item
curl http://localhost:8080/albums/2
- POST create
curl http://localhost:8080/albums \ --include --header \ "Content-Type: application/json" \ --request "POST" --data \ '{"id": "4","title": "The Modern Sound of Betty Carter","artist": "Betty Carter","price": 49.99}'