2016-11-30 15:19:01 +01:00
|
|
|
package endpoints
|
|
|
|
|
|
|
|
// Endpoints / Server configuration
|
|
|
|
type ServerConfig struct {
|
2016-12-06 13:17:43 +01:00
|
|
|
AllowFrom []string `toml:"allow_from"`
|
|
|
|
ModulesEnabled []string `toml:"modules_enabled"`
|
2016-11-30 15:19:01 +01:00
|
|
|
}
|