12 lines
226 B
Go
12 lines
226 B
Go
package commonspace
|
|
|
|
type ConfigGetter interface {
|
|
GetSpace() Config
|
|
}
|
|
|
|
type Config struct {
|
|
GCTTL int `yaml:"gcTTL"`
|
|
SyncPeriod int `yaml:"syncPeriod"`
|
|
TreeInMemoryData bool `yaml:"treeInMemoryData"`
|
|
}
|