24 lines
619 B
Go
24 lines
619 B
Go
|
package config
|
||
|
|
||
|
type SyncAPI struct {
|
||
|
Matrix *Global `yaml:"-"`
|
||
|
|
||
|
Listen Address `yaml:"listen"`
|
||
|
Bind Address `yaml:"bind"`
|
||
|
|
||
|
Database DatabaseOptions `yaml:"database"`
|
||
|
}
|
||
|
|
||
|
func (c *SyncAPI) Defaults() {
|
||
|
c.Listen = "localhost:7773"
|
||
|
c.Bind = "localhost:7773"
|
||
|
c.Database.Defaults()
|
||
|
c.Database.ConnectionString = "file:syncapi.db"
|
||
|
}
|
||
|
|
||
|
func (c *SyncAPI) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
||
|
checkNotEmpty(configErrs, "sync_api.listen", string(c.Listen))
|
||
|
checkNotEmpty(configErrs, "sync_api.bind", string(c.Bind))
|
||
|
checkNotEmpty(configErrs, "sync_api.database", string(c.Database.ConnectionString))
|
||
|
}
|