mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-07 21:47:02 +09:00
10 lines
163 B
Go
10 lines
163 B
Go
package commonspace
|
|
|
|
type ConfigGetter interface {
|
|
GetSpace() Config
|
|
}
|
|
|
|
type Config struct {
|
|
GCTTL int `yaml:"gcTTL"`
|
|
SyncPeriod int `yaml:"syncPeriod"`
|
|
}
|