wireguard-dashboard/config/config.go

12 lines
244 B
Go
Raw Normal View History

2024-03-05 16:59:37 +08:00
package config
var Config *config
type config struct {
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
}