fusenapi/server_api/base.api

20 lines
304 B
Plaintext

syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
service base {
@handler MerchantCategoryListHandler
get /api/base/merchant_category_list(MerchantCategoryListReq) returns (response);
}
type (
MerchantCategoryListReq {
}
)