mirror of
https://github.com/TeaOSLab/EdgeCommon.git
synced 2025-11-03 04:10:25 +08:00
11 lines
317 B
Go
11 lines
317 B
Go
// Copyright 2022 GoEdge CDN goedge.cdn@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"`
|
|
}
|