wireguard-dashboard/config/config.go

11 lines
200 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"`
2024-03-05 16:59:37 +08:00
}