fusenapi/server_api/basic.api
laodaming 5aa656c502 fix
2023-06-05 19:07:18 +08:00

16 lines
257 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"`
}