website-nav/config/config.go
2024-10-18 17:19:19 +08:00

11 lines
206 B
Go

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