LoggerConf
HTTPServer HTTPServerConf
Test Test
DB DBConf
}
// LoggerConf ...
type LoggerConf struct {
Level, File string
}
// ServerConf ...
type HTTPServerConf struct {
Host, Port string
}
type Test struct {
Test string
}
// DataBaseConf ...
type DBConf struct {
Enable bool
User string
Password string
Host string
Port string
NameDB string
}
Decode toml
var conf Config
_, err := toml.DecodeFile(path, &conf); err != nil {
fmt.Println("Config: ", conf)
А результат
Config: {{DEBUG logs/logrus.log} { } {true} {true postgres 123456 127.0.0.1 5432 calendar}}
Почему может не парситься HTTPServerConf?
А где томл файл?
Рядом лежит, но дело не в пути. Прога видит его и парсит три другие структуры
А структура его соответствует ожидаемой? Содержимое дай
Может как то не стыкуется название поля в структуре и название параметра в конфиге - HTTPServer
Обсуждают сегодня