11 lines
206 B
Go
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"`
|
|
}
|