wireguard-dashboard/config/config.go

13 lines
286 B
Go
Raw Permalink Normal View History

2024-03-05 16:59:37 +08:00
package config
var Config *config
type config struct {
2024-03-22 11:40:34 +08:00
Http *http `yaml:"http"`
Database *database `yaml:"database"`
Redis *redis `yaml:"redis"`
File *file `yaml:"file"`
Mail *mail `yaml:"email"`
2024-03-22 11:40:34 +08:00
Wireguard *wireguard `yaml:"wireguard"`
2024-03-05 16:59:37 +08:00
}