23 lines
465 B
Plaintext
23 lines
465 B
Plaintext
syntax = "v1"
|
|
|
|
info (
|
|
title: // TODO: add title
|
|
desc: // TODO: add description
|
|
author: ""
|
|
email: ""
|
|
)
|
|
|
|
import "basic.api"
|
|
|
|
service resource {
|
|
@handler LogoCombineHandler
|
|
post /api/resource/logo-combine(LogoCombineReq) returns (response);
|
|
}
|
|
|
|
type (
|
|
LogoCombineReq {
|
|
ResourceKey string `form:"resource_key"` // 资源唯一标识
|
|
CombineParam string `form:"combine_param"` // 合图参数
|
|
TemplateId int64 `form:"template_id"` // 合图参数
|
|
}
|
|
) |