20 lines
349 B
Plaintext
20 lines
349 B
Plaintext
|
|
type (
|
||
|
|
UploadImageResp {
|
||
|
|
Code int `json:"code"` // 业务状态码
|
||
|
|
Message string `json:"message"` // 提示信息
|
||
|
|
Data {
|
||
|
|
Url string `json:"url"` // 图片访问地址
|
||
|
|
} `json:"data"`
|
||
|
|
}
|
||
|
|
)
|
||
|
|
|
||
|
|
@server (
|
||
|
|
group: upload
|
||
|
|
prefix: /api
|
||
|
|
)
|
||
|
|
service upload-api {
|
||
|
|
@handler UploadImageHandler
|
||
|
|
post /upload/image returns (UploadImageResp)
|
||
|
|
}
|
||
|
|
|