fusenapi/server_api/resource.api

54 lines
1.3 KiB
Plaintext
Raw Normal View History

syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
2023-08-25 16:46:58 +08:00
// @server(
// middleware: Tracing // 路由中间件声明
// )
service resource {
@handler LogoCombineHandler
post /api/resource/logo-combine(LogoCombineReq) returns (response);
2023-08-09 14:18:27 +08:00
2023-08-18 17:38:12 +08:00
@handler LogoRemovebgHandler
post /api/resource/logo-removebg(LogoRemovebgReq) returns (response);
2023-08-09 14:18:27 +08:00
@handler ResourceInfoHandler
get /api/resource/info(ResourceInfoReq) returns (response);
}
2023-08-18 17:38:12 +08:00
type (
LogoRemovebgReq {
IsRemoveBg string `form:"is_remove_bg"`
LogoFile string `form:"logo_file"`
Width string `form:"width"`
Height string `form:"height"`
2023-08-23 11:09:14 +08:00
Proportion string `form:"proportion"`
2023-08-18 17:38:12 +08:00
}
)
2023-08-09 14:18:27 +08:00
type (
ResourceInfoReq {
ResourceId string `form:"resource_id,optional"` // 资源ID
ResourceKey string `form:"resource_key,optional"` // 资源唯一标识
}
)
type (
LogoCombineReq {
2023-08-15 10:58:24 +08:00
TemplateId int64 `form:"template_id"` // 合图参数
TemplateTag string `form:"template_tag"` // 合图参数
Website string `form:"website,optional"` // 合图参数
Slogan string `form:"slogan,optional"` // 合图参数
Address string `form:"address,optional"` // 合图参数
Phone string `form:"phone,optional"` // 合图参数
2023-08-15 11:20:09 +08:00
Qrcode string `form:"qrcode,optional"` // 合图参数
}
)