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.
25 lines
494 B
25 lines
494 B
package apistruct
|
|
|
|
type GetConfigReq struct {
|
|
ConfigName string `json:"configName"`
|
|
}
|
|
|
|
type GetConfigListResp struct {
|
|
Environment string `json:"environment"`
|
|
Version string `json:"version"`
|
|
ConfigNames []string `json:"configNames"`
|
|
}
|
|
|
|
type SetConfigReq struct {
|
|
ConfigName string `json:"configName"`
|
|
Data string `json:"data"`
|
|
}
|
|
|
|
type SetEnableConfigManagerReq struct {
|
|
Enable bool `json:"enable"`
|
|
}
|
|
|
|
type GetEnableConfigManagerResp struct {
|
|
Enable bool `json:"enable"`
|
|
}
|