# README
gin - gonic GET POST PUT DELETE
GET
localhost:9000/persons
POST
path:
localhost:9000/person
body:
{
"id": 1,
"name": "Akagi",
"age": 34
}
PUT
path:
localhost:9000/person/2
body:
{
"id": 1,
"name": "Mogami",
"age": 25
}
DELETE
localhost:9000/person/1
# Type aliases
Persons : map of person and its ID.