mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 05:00:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			308 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			308 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package serverconfigs
 | 
						|
 | 
						|
type ScriptConfig struct {
 | 
						|
	IsPrior bool `yaml:"isPrior" json:"isPrior"`
 | 
						|
	IsOn    bool `yaml:"isOn" json:"isOn"`
 | 
						|
 | 
						|
	Code string `yaml:"code" json:"code"`
 | 
						|
}
 | 
						|
 | 
						|
func (this *ScriptConfig) Init() error {
 | 
						|
	return nil
 | 
						|
}
 |