10 lines
167 B
Go
10 lines
167 B
Go
package nodeconf
|
|
|
|
import "context"
|
|
|
|
const CNameSource = "common.nodeconf.source"
|
|
|
|
type Source interface {
|
|
GetLast(ctx context.Context) (c Configuration, err error)
|
|
}
|