fusenapi/server_api/basic.api

16 lines
257 B
Plaintext
Raw Normal View History

2023-05-31 18:33:02 +08:00
syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
2023-06-05 17:56:55 +08:00
// response 统一返回码
2023-05-31 18:33:02 +08:00
type response {
Code int `json:"code"`
Message string `json:"msg"`
Data interface{} `json:"data"`
}