Golang REST API deployed to AWS
curl -d '{"Name":"ball","quantity":4}' -X POST localhost/product
curl localhost/products
curl localhost/product?name=ball
curl -d '{"Name":"ball","quantity":5}' -X PUT localhost/product
curl -d '{"Name":"ball","quantity":5}' -X DELETE localhost/product
go mod init mehlj-pipeline
go mod tidy