package config import "github.com/BurntSushi/toml" func LoadFromToml(path string) (c Config, err error) { _, err = toml.DecodeFile(path, &c) return }