Categorygithub.com/enorith/config
modulepackage
0.0.3
Repository: https://github.com/enorith/config.git
Documentation: pkg.go.dev

# 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