mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
11 lines
237 B
Go
11 lines
237 B
Go
package config
|
|
|
|
type ConfigGetter interface {
|
|
GetSpace() Config
|
|
}
|
|
|
|
type Config struct {
|
|
GCTTL int `yaml:"gcTTL"`
|
|
SyncPeriod int `yaml:"syncPeriod"`
|
|
KeepTreeDataInMemory bool `yaml:"keepTreeDataInMemory"`
|
|
}
|