Skip to content

Instantly share code, notes, and snippets.

@presmihaylov
Created April 5, 2020 05:35
Show Gist options
  • Save presmihaylov/7399b1fc50bd2395d266fd423ad21106 to your computer and use it in GitHub Desktop.
Save presmihaylov/7399b1fc50bd2395d266fd423ad21106 to your computer and use it in GitHub Desktop.
...
// ProvideConfig provides the standard configuration to fx
func ProvideConfig() *Config {
conf := Config{}
data, err := ioutil.ReadFile("config/base.yaml")
// handle error
err = yaml.Unmarshal([]byte(data), &conf)
// handle error
return &conf
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment