Files
EdgeCommon/pkg/serverconfigs/http_websocket_ref.go
2020-09-26 08:07:24 +08:00

12 lines
271 B
Go

package serverconfigs
type HTTPWebsocketRef struct {
IsPrior bool `yaml:"isPrior" json:"isPrior"`
IsOn bool `yaml:"isOn" json:"isOn"`
WebsocketId int64 `yaml:"websocketId" json:"websocketId"`
}
func (this *HTTPWebsocketRef) Init() error {
return nil
}