fusenapi/server_api/basic.api
2023-06-05 17:56:55 +08:00

21 lines
393 B
Plaintext

syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
// response 统一返回码
type response {
Code int `json:"code"`
Message string `json:"msg"`
Data interface{} `json:"data"`
}
// Auth jwt认证认证的安全参数
type Auth {
AccessSecret string `json:"AccessSecret"`
AccessExpire int `json:"AccessExpire"`
}