fusenapi/server_api/info.api
2023-08-31 16:17:32 +08:00

21 lines
289 B
Plaintext

syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
service info {
@handler InfoHandler
post /api/info/user(UserInfoRequest) returns (response);
}
type (
UserInfoRequest {
Module []string `json:"module"`
}
)