13 lines
285 B
Go
13 lines
285 B
Go
package config
|
|
|
|
var Config *config
|
|
|
|
type config struct {
|
|
Http *http `yaml:"http"`
|
|
Database *database `yaml:"database"`
|
|
Redis *redis `yaml:"redis"`
|
|
File *file `yaml:"file"`
|
|
Mail *mail `yaml:"mail"`
|
|
Wireguard *wireguard `yaml:"wireguard"`
|
|
}
|