birthdaybot/model/config.go
2023-06-29 23:46:17 +02:00

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
}