mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
9 lines
167 B
Go
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)
|
|
}
|