mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-10-27 05:52:29 +08:00
15 lines
283 B
Go
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"`
|
|
}
|