open-im-server/pkg/apistruct/config_manager.go
2024-12-20 10:47:44 +08:00

15 lines
283 B
Go

package apistruct
type GetConfigReq struct {
ConfigName string `json:"config_name"`
}
type GetConfigListReq struct {
}
type GetConfigListResp struct {
Environment string `json:"environment"`
Version string `json:"version"`
ConfigNames []string `json:"config_names"`
}