32 lines
537 B
Plaintext
32 lines
537 B
Plaintext
syntax = "v1"
|
|
|
|
info (
|
|
title: "代理服务"
|
|
desc: "代理服务接口"
|
|
author: "Liangzai"
|
|
email: "2440983361@qq.com"
|
|
version: "v1"
|
|
)
|
|
|
|
import (
|
|
"agent/agent.api"
|
|
)
|
|
|
|
@server (
|
|
prefix: api/v1/agent
|
|
group: agent
|
|
)
|
|
service main {
|
|
@handler GetAgentInfo
|
|
get /info returns (AgentInfoResp)
|
|
|
|
// 提交代理申请
|
|
@handler ApplyForAgent
|
|
post /apply (AgentApplyReq) returns (AgentApplyResp)
|
|
|
|
// 查询代理申请状态
|
|
@handler GetAgentAuditStatus
|
|
get /audit/status (AgentAuditStatusReq) returns (AgentAuditStatusResp)
|
|
}
|
|
|