1
0
Fork 0
mirror of https://github.com/alice-lg/birdwatcher.git synced 2025-03-23 00:00:07 +01:00
birdwatcher/endpoints/config.go

12 lines
280 B
Go
Raw Normal View History

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"`
EnableTLS bool `toml:"enable_tls"`
Crt string `toml:"crt"`
Key string `toml:"key"`
2016-11-30 15:19:01 +01:00
}