wireguard-dashboard/config/config.go

13 lines
286 B
Go
Raw Normal View History

2024-07-05 14:41:35 +08:00
package config
var Config *config
type config struct {
Http *http `yaml:"http"`
Database *database `yaml:"database"`
2024-07-11 16:21:08 +08:00
Cache *cache `yaml:"redis"`
2024-07-05 14:41:35 +08:00
File *file `yaml:"file"`
Mail *mail `yaml:"email"`
Wireguard *wireguard `yaml:"wireguard"`
}