2023-07-17 13:50:49 +02:00

13 lines
287 B
Go

package config
type ConfigGetter interface {
GetSpace() Config
}
type Config struct {
GCTTL int `yaml:"gcTTL"`
SyncPeriod int `yaml:"syncPeriod"`
SyncLogPeriod int `yaml:"syncLogPeriod"`
KeepTreeDataInMemory bool `yaml:"keepTreeDataInMemory"`
}