mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 13:10:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			271 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			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
 | 
						|
}
 |