mirror of
				https://github.com/TeaOSLab/EdgeCommon.git
				synced 2025-11-04 13:10:24 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			11 lines
		
	
	
		
			318 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			11 lines
		
	
	
		
			318 B
		
	
	
	
		
			Go
		
	
	
	
	
	
// Copyright 2022 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
 | 
						|
 | 
						|
package nodeconfigs
 | 
						|
 | 
						|
// ParentNodeConfig 父级节点配置
 | 
						|
type ParentNodeConfig struct {
 | 
						|
	Id         int64    `yaml:"id" json:"id"`
 | 
						|
	Addrs      []string `yaml:"addrs" json:"addrs"`
 | 
						|
	SecretHash string   `yaml:"secretHash" json:"secretHash"`
 | 
						|
}
 |