mirror of
https://github.com/openimsdk/open-im-server.git
synced 2025-04-06 04:15:46 +08:00
22 lines
459 B
Go
22 lines
459 B
Go
package base_info
|
|
|
|
type SetClientInitConfigReq struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
DiscoverPageURL *string `json:"discoverPageURL"`
|
|
}
|
|
|
|
type SetClientInitConfigResp struct {
|
|
CommResp
|
|
}
|
|
|
|
type GetClientInitConfigReq struct {
|
|
OperationID string `json:"operationID" binding:"required"`
|
|
}
|
|
|
|
type GetClientInitConfigResp struct {
|
|
CommResp
|
|
Data struct {
|
|
DiscoverPageURL string `json:"discoverPageURL"`
|
|
} `json:"data"`
|
|
}
|