2020-08-10 13:18:04 +00:00
|
|
|
package config
|
|
|
|
|
|
|
|
type EDUServer struct {
|
|
|
|
Matrix *Global `yaml:"-"`
|
|
|
|
|
2020-08-13 11:16:37 +00:00
|
|
|
InternalAPI InternalAPIOptions `yaml:"internal_api"`
|
2020-08-10 13:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EDUServer) Defaults() {
|
2020-08-13 11:16:37 +00:00
|
|
|
c.InternalAPI.Listen = "http://localhost:7778"
|
|
|
|
c.InternalAPI.Connect = "http://localhost:7778"
|
2020-08-10 13:18:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *EDUServer) Verify(configErrs *ConfigErrors, isMonolith bool) {
|
2020-08-13 11:16:37 +00:00
|
|
|
checkURL(configErrs, "edu_server.internal_api.listen", string(c.InternalAPI.Listen))
|
|
|
|
checkURL(configErrs, "edu_server.internal_api.connect", string(c.InternalAPI.Connect))
|
2020-08-10 13:18:04 +00:00
|
|
|
}
|