wireguard-dashboard/config/config.go
2024-10-15 17:16:22 +08:00

12 lines
249 B
Go

package config
var Config *config
type config struct {
Http *http `yaml:"http"`
Database *database `yaml:"database"`
Cache *cache `yaml:"redis"`
File *file `yaml:"file"`
Wireguard *wireguard `yaml:"wireguard"`
}