yao/tests/apis/benchmark.http.json
2022-01-22 03:13:00 +08:00

42 lines
821 B
JSON

{
"name": "用户接口",
"version": "1.0.0",
"description": "用户API",
"group": "benchmark",
"guard": "bearer-jwt",
"paths": [
{
"path": "/ping",
"method": "GET",
"guard": "-",
"process": "xiang.helper.Return",
"in": [":query"],
"out": {
"status": 200,
"type": "application/json"
}
},
{
"path": "/flows/pure",
"method": "GET",
"guard": "-",
"process": "flows.benchmark.pure",
"in": [],
"out": {
"status": 200,
"type": "application/json"
}
},
{
"path": "/flows/script",
"method": "GET",
"guard": "-",
"process": "flows.benchmark.script",
"in": [],
"out": {
"status": 200,
"type": "application/json"
}
}
]
}