learning_go/testing/go-code-samples/go-rest-demo/cmd/standardlib/main_test.http
2025-12-20 17:00:05 +03:00

53 lines
836 B
HTTP

###
GET http://localhost:8080
###
POST http://localhost:8080/recipes/
Content-Type: application/json
{
"name": "Ham and cheese toasties",
"ingredients": [
{
"name": "bread"
},{
"name": "ham"
},{
"name": "cheese"
}
]
}
###
GET http://localhost:8080/recipes
###
GET http://localhost:8080/recipes/ham-and-cheese-toasties
###
PUT http://localhost:8080/recipes/ham-and-cheese-toasties
Content-Type: application/json
{
"name": "Ham and cheese toasties",
"ingredients": [
{
"name": "bread"
},{
"name": "ham"
},{
"name": "cheese"
},{
"name": "butter"
}
]
}
###
GET http://localhost:8080/recipes/ham-and-cheese-toasties
###
DELETE http://localhost:8080/recipes/ham-and-cheese-toasties
###
GET http://localhost:8080/recipes/ham-and-cheese-toasties