fusenapi/server_api/info.api

21 lines
289 B
Plaintext
Raw Normal View History

2023-08-31 08:17:32 +00:00
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"`
}
)