fusenapi/server_api/webset.api
2023-07-12 11:09:43 +08:00

25 lines
438 B
Plaintext

syntax = "v1"
info (
title: // TODO: add title
desc: // TODO: add description
author: ""
email: ""
)
import "basic.api"
service webset {
@handler WetSetSettingHandler
get /api/web-set/setting(RequestWebSet) returns (response);
}
type RequestWebSet {
Type string `form:"type"`
}
type DataWebSet {
Title string `json:"title"`
Introduction string `json:"introduction"`
List interface{} `json:"list"`
}