yanic/cmd/config.go

32 lines
516 B
Go
Raw Normal View History

2017-09-17 01:26:19 +00:00
package cmd
import (
2018-01-13 13:41:49 +00:00
"io/ioutil"
2017-09-17 01:26:19 +00:00
2019-01-17 12:26:16 +00:00
"github.com/naoina/toml"
2017-09-17 01:26:19 +00:00
"github.com/FreifunkBremen/yanic/respond"
"github.com/FreifunkBremen/yanic/runtime"
)
var (
2018-01-19 03:31:33 +00:00
configPath string
collector *respond.Collector
nodes *runtime.Nodes
2017-09-17 01:26:19 +00:00
)
2018-01-13 13:41:49 +00:00
// ReadConfigFile reads a config model from path of a yml file
2019-01-24 01:54:21 +00:00
func ReadConfigFile(path string, config interface{}) error {
2018-01-13 13:41:49 +00:00
file, err := ioutil.ReadFile(path)
if err != nil {
2019-01-24 01:54:21 +00:00
return err
2018-01-13 13:41:49 +00:00
}
err = toml.Unmarshal(file, config)
if err != nil {
2019-01-24 01:54:21 +00:00
return err
2018-01-13 13:41:49 +00:00
}
2019-01-24 01:54:21 +00:00
return nil
2018-01-13 13:41:49 +00:00
}