25 lines
381 B
Go
25 lines
381 B
Go
package model
|
|
|
|
import (
|
|
"io/ioutil"
|
|
|
|
"gopkg.in/yaml.v3"
|
|
)
|
|
|
|
type Config struct {
|
|
BirthdayFile string `yaml:"birthday_file"`
|
|
}
|
|
|
|
func ReadConfig(path string) (*Config, error) {
|
|
fileBytes, err := ioutil.ReadFile(path)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
var config *Config
|
|
if err := yaml.Unmarshal(fileBytes, &config); err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
return config, nil
|
|
}
|