mirror of
https://github.com/1f349/dendrite.git
synced 2024-11-12 23:01:40 +00:00
19 lines
427 B
Go
19 lines
427 B
Go
|
package config
|
||
|
|
||
|
type EDUServer struct {
|
||
|
Matrix *Global `yaml:"-"`
|
||
|
|
||
|
Listen Address `yaml:"listen"`
|
||
|
Bind Address `yaml:"bind"`
|
||
|
}
|
||
|
|
||
|
func (c *EDUServer) Defaults() {
|
||
|
c.Listen = "localhost:7778"
|
||
|
c.Bind = "localhost:7778"
|
||
|
}
|
||
|
|
||
|
func (c *EDUServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
||
|
checkNotEmpty(configErrs, "edu_server.listen", string(c.Listen))
|
||
|
checkNotEmpty(configErrs, "edu_server.bind", string(c.Bind))
|
||
|
}
|