# .http文件的语法

@uri=http://localhost:5000/
@json=Content-Type: application/json
@ajson=accept: application/json
###
GET {{uri}}posts


###
POST {{uri}}posts
{{json}}
{{ajson}}
# Content-Type: application/json
# accept: application/json

{
  "title": "string",
  "content": "string"
}