Files
EdgeCommon/pkg/reporterconfigs/node_config.go
2021-09-05 11:11:04 +08:00

12 lines
202 B
Go

// Copyright 2021 Liuxiangchao iwind.liu@gmail.com. All rights reserved.
package reporterconfigs
type NodeConfig struct {
Id int64 `json:"id"`
}
func (this *NodeConfig) Init() error {
return nil
}