# README
Config component for Enorith
Basic usage
package main
import (
"github.com/enorith/config"
)
type FooConfig struct {
// load yaml config, fallback environment variable
Foo string `env:"ENV_FOO"`
}
func main() {
var c FooConfig
config.Unmarshal("config.yml", &c)
}
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author
# Variables
No description provided by the author