├── .github └── workflows │ └── ci.yaml ├── .gitignore ├── LICENSE.txt ├── README.md ├── doc.go ├── doc_test.go ├── fromenv.go ├── fromenv_test.go ├── go.mod └── go.sum /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | coverage.txt 2 | .idea/ 3 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/doc.go -------------------------------------------------------------------------------- /doc_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/doc_test.go -------------------------------------------------------------------------------- /fromenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/fromenv.go -------------------------------------------------------------------------------- /fromenv_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/fromenv_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alfred-landrum/fromenv/HEAD/go.sum --------------------------------------------------------------------------------