You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
384 B
23 lines
384 B
|
1 year ago
|
package web
|
||
|
|
|
||
|
|
import (
|
||
|
|
"server/modules/web/values"
|
||
|
|
)
|
||
|
|
|
||
|
|
// swagger:route POST /sys/config system idOfSysConfig
|
||
|
|
// 获取服务器配置信息
|
||
|
|
// Responses:
|
||
|
|
// 200:SysConfigResp
|
||
|
|
|
||
|
|
// swagger:response SysConfigResp
|
||
|
|
type SysConfigResp struct {
|
||
|
|
// in:body
|
||
|
|
Body values.SysConfigResp
|
||
|
|
}
|
||
|
|
|
||
|
|
// swagger:parameters idOfSysConfig
|
||
|
|
type SysConfigReq struct {
|
||
|
|
// in:body
|
||
|
|
Body values.SysConfigReq
|
||
|
|
}
|