firest commit

This commit is contained in:
wwweww
2026-02-21 22:48:40 +08:00
commit 55e8053e07
1034 changed files with 99049 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
syntax = "v1"
info (
author: "Asadz"
date: "2024-06-19"
version: "1.0"
)
type (
UserInfoReq {
UserId int64 `json:"userId"`
}
UserInfoResp {
UserId int64 `json:"userId"`
Nickname string `json:"nickname"`
}
)
service user-api {
@doc (
summary: "Get user infomaction by user id"
)
@handler userInfo
post /user/info (UserInfoReq) returns (UserInfoResp)
}