mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
10 lines
238 B
Go
10 lines
238 B
Go
package nodeconf
|
|
|
|
import "context"
|
|
|
|
const CNameStore = "common.nodeconf.store"
|
|
|
|
type Store interface {
|
|
GetLast(ctx context.Context, netId string) (c Configuration, err error)
|
|
SaveLast(ctx context.Context, c Configuration) (err error)
|
|
}
|