nodeconf source constructor

This commit is contained in:
Sergey Cherepanov 2023-04-17 13:47:04 +02:00 committed by Mikhail Iudin
parent 03e400a4b2
commit a790c7f5f8
No known key found for this signature in database
GPG Key ID: FAAAA8BAABDFF1C0

View File

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