fusenapi/server_api/basic.api

33 lines
669 B
Plaintext
Raw Normal View History

2023-05-31 10:33:02 +00:00
syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
2023-06-05 09:56:55 +00:00
// response 统一返回码
2023-05-31 10:33:02 +00:00
type response {
Code int `json:"code"`
Message string `json:"msg"`
Data interface{} `json:"data"`
}
2023-06-06 12:08:32 +00:00
// responseJwt 统一返回码
type responseJwt {
Code int `json:"code"`
Message string `json:"msg"`
Data interface{} `json:"data"`
AccessSecret string `json:"accessSecret"`
AccessExpire int64 `json:"accessExpire"`
}
// Auth 认证结构
type Auth {
AccessSecret string `json:"accessSecret"`
AccessExpire int64 `json:"accessExpire"`
RefreshAfter int64 `json:"refreshAfter"`
}