website-nav/config/config.go

11 lines
206 B
Go
Raw Normal View History

2024-10-18 17:19:19 +08:00
package config
var GlobalConfig *config
type config struct {
Http *http `yaml:"http"`
Database *database `yaml:"database"`
Cache *cache `yaml:"cache"`
File *file `yaml:"file"`
}