A simple configuration management in Golang.
Get the repository by following this command below:
go get github.com/andika-s/config
Start to create new config initialization and put the configuration script using yaml extension and access the process function.
func main() {
cfg := config.New("config.yaml")
instance, err := cfg.Process()
if err != nil {
log.Fatal(err)
}
}