├── .github └── workflows │ ├── release.yml │ └── verify.yml ├── .gitignore ├── .golangci.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── env.go ├── env_test.go ├── go.mod └── version.txt /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/verify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/.github/workflows/verify.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/.gitignore -------------------------------------------------------------------------------- /.golangci.yml : -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/.golangci.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/README.md -------------------------------------------------------------------------------- /env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/env.go -------------------------------------------------------------------------------- /env_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/allisson/go-env/HEAD/env_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/allisson/go-env 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 0.5.0 2 | --------------------------------------------------------------------------------