mirror of
https://github.com/alice-lg/birdwatcher.git
synced 2025-03-09 00:00:05 +01:00
7 lines
179 B
Go
7 lines
179 B
Go
package endpoints
|
|
|
|
// Endpoints / Server configuration
|
|
type ServerConfig struct {
|
|
AllowFrom []string `toml:"allow_from"`
|
|
ModulesEnabled []string `toml:"modules_enabled"`
|
|
}
|