fusenapi/server_api/map-library.api

27 lines
566 B
Plaintext
Raw Normal View History

2023-06-14 06:57:20 +00:00
syntax = "v1"
info (
title: "贴图库服务"// TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
service map-library {
//获取贴图库列表
@handler GetMapLibraryListHandler
get /map-library/list ( ) returns (response);
}
//获取贴图库列表
type GetMapLibraryListRsp {
2023-06-19 06:53:21 +00:00
Mid int64 `json:"mid"`
Ctime string `json:"ctime"`
Tag MapLibraryListTag `json:"tag"`
Info string `json:"info"`
2023-06-14 06:57:20 +00:00
}
type MapLibraryListTag {
Id int64 `json:"id"`
Title string `json:"title"`
}