9 lines
216 B
Go
9 lines
216 B
Go
package config
|
|
|
|
// ConfigStruct describes whole configuration.
|
|
type ConfigStruct struct {
|
|
Database ConfigDatabase `yaml:"database"`
|
|
Logging ConfigLogging `yaml:"logging"`
|
|
HTTP ConfigHTTP `yaml:"http"`
|
|
}
|