conf/go.mod
Bruno Carlin e72c317bbb
All checks were successful
/ linting (push) Successful in 3m44s
/ tests (push) Successful in 27s
feat: add support for toml in addition to json
2024-05-06 11:19:26 +02:00

12 lines
284 B
Modula-2

module code.bcarlin.xyz/go/conf
go 1.17
require github.com/stretchr/testify v1.9.0
require (
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/pelletier/go-toml/v2 v2.2.2 // indirect
github.com/pmezard/go-difflib v1.0.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
)