42 lines
821 B
JSON
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"
|
|
}
|
|
}
|
|
]
|
|
}
|