nodeconf source constructor

This commit is contained in:
Sergey Cherepanov 2023-04-17 13:47:04 +02:00
parent f7cc1f4b5d
commit 73ee67c5c0
No known key found for this signature in database
GPG Key ID: 87F8EDE8FBDF637C

View File

@ -13,6 +13,10 @@ type NodeConfSource interface {
nodeconf.Source
}
func New() NodeConfSource {
return new(nodeConfSource)
}
type nodeConfSource struct {
cl coordinatorclient.CoordinatorClient
}