2024-03-05 16:59:37 +08:00
|
|
|
package config
|
|
|
|
|
|
|
|
var Config *config
|
|
|
|
|
|
|
|
type config struct {
|
2024-03-22 10:42:36 +08:00
|
|
|
Http *http `yaml:"http"`
|
|
|
|
Database *database `yaml:"database"`
|
|
|
|
Redis *redis `yaml:"redis"`
|
|
|
|
File *file `yaml:"file"`
|
|
|
|
Wireguard wireguard `yaml:"wireguard"`
|
2024-03-05 16:59:37 +08:00
|
|
|
}
|