Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 385 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 385 Bytes

goconfig Build Status

Simple loading of configuration from several formats

Usage

type Example struct{
	Data int
	Name string
}

func main() {
	exp := Example{}
	res := Load("./testdata/test1.json", &exp)
	if res != nil {
	    return
    }
}

Licence

MIT