sum7/warehost
sum7
/
warehost
Archived
1
0
Fork 0
This repository has been archived on 2020-09-27. You can view files and clone it, but cannot push or open issues or pull requests.
warehost/config/config.go

34 lines
653 B
Go
Raw Normal View History

2016-08-13 11:03:03 +02:00
package config
import (
"io/ioutil"
"log"
"gopkg.in/yaml.v2"
)
// Config is the struct of the api
type Config struct {
API struct {
Address string `yaml:"address"`
Port string `yaml:"port"`
} `yaml:"api"`
Webroot string `yaml:"webroot"`
Database string `yaml:"database"`
Modules []struct {
Name string `yaml:"name"`
Database string `yaml:"database"`
} `yaml:"modules"`
}
// ReadConfigFile reads a config models by path to a yml file
func ReadConfigFile(path string) *Config {
config := &Config{}
file, _ := ioutil.ReadFile(path)
err := yaml.Unmarshal(file, &config)
if err != nil {
log.Fatal(err)
}
return config
}