1
0
Fork 0
mirror of https://github.com/anyproto/any-sync.git synced 2025-06-08 05:57:03 +09:00
any-sync/nodeconf/source.go
2023-04-06 19:02:18 +02:00

9 lines
167 B
Go

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