e3.0.0 Added env variable support, improved cli arg, added tests, updated documentation.

This commit is contained in:
2025-07-01 13:06:07 -04:00
parent b1e241149e
commit 4053c463d6
17 changed files with 2290 additions and 615 deletions

9
go.mod
View File

@ -1,8 +1,15 @@
module github.com/LixenWraith/config
module github.com/lixenwraith/config
go 1.24.2
require (
github.com/BurntSushi/toml v1.5.0
github.com/mitchellh/mapstructure v1.5.0
github.com/stretchr/testify v1.10.0
)
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)