16 lines
277 B
Go
16 lines
277 B
Go
package proto
|
|
|
|
type GetVersionRsp struct {
|
|
Current string `json:"current"`
|
|
Latest string `json:"latest"`
|
|
UpdateUrl string `json:"update_url"`
|
|
}
|
|
|
|
type GetPreviewRsp struct {
|
|
Enabled bool `json:"enabled"`
|
|
}
|
|
|
|
type SetPreviewReq struct {
|
|
Enable bool `validate:"omitempty"`
|
|
}
|