Sergey Cherepanov 17e37fb8fb
refactor configs
2022-12-27 16:50:20 +03:00

11 lines
163 B
Go

package commonspace
type ConfigGetter interface {
GetSpace() Config
}
type Config struct {
GCTTL int `yaml:"gcTTL"`
SyncPeriod int `yaml:"syncPeriod"`
}