42 lines
797 B
JSON
42 lines
797 B
JSON
{
|
|
"name": "系统接口",
|
|
"version": "1.0.0",
|
|
"description": "系统接口API",
|
|
"group": "xiang",
|
|
"guard": "bearer-jwt",
|
|
"paths": [
|
|
{
|
|
"path": "/ping",
|
|
"method": "GET",
|
|
"guard": "-",
|
|
"process": "xiang.main.Ping",
|
|
"in": [],
|
|
"out": {
|
|
"status": 200,
|
|
"type": "application/json"
|
|
}
|
|
},
|
|
{
|
|
"path": "/inspect",
|
|
"method": "GET",
|
|
"guard": "-",
|
|
"process": "xiang.main.inspect",
|
|
"in": [],
|
|
"out": {
|
|
"status": 200,
|
|
"type": "application/json"
|
|
}
|
|
},
|
|
{
|
|
"path": "/favicon.ico",
|
|
"method": "GET",
|
|
"guard": "-",
|
|
"process": "xiang.main.Favicon",
|
|
"in": [],
|
|
"out": {
|
|
"status": 200,
|
|
"type": "image/x-icon"
|
|
}
|
|
}
|
|
]
|
|
}
|