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/cmd/warehost-host/pure-ftp-auth/config.go

33 lines
634 B
Go
Raw Normal View History

2016-09-02 21:32:56 +02:00
package main
import (
"io/ioutil"
"log"
"gopkg.in/yaml.v2"
)
// Config of pure-ftp-auth
type Config struct {
Path string `yaml:"path"`
Userid string `yaml:"uid"`
Groupid string `yaml:"gid"`
Quote string `yaml:"quote"`
Database string `yaml:"database"`
Log struct {
Path string `yaml:"path"`
} `yaml:"log"`
DatabaseDebug bool `yaml:"databasedebug"`
}
// 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
}