├── .envrc ├── .github └── workflows │ └── goreleaser.yml ├── .gitignore ├── .ignore ├── .pre-commit-hooks.yaml ├── LICENSE ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── go.mod ├── go.sum ├── main.go ├── vendor ├── github.com │ └── acaloiaro │ │ └── go-envparse │ │ ├── .envrc │ │ ├── .gitignore │ │ ├── .goreleaser.yml │ │ ├── LICENSE │ │ ├── NOTICES.txt │ │ ├── README.md │ │ ├── envparse.go │ │ ├── flake.lock │ │ └── flake.nix └── modules.txt └── version.txt /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/.envrc -------------------------------------------------------------------------------- /.github/workflows/goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/.github/workflows/goreleaser.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/.gitignore -------------------------------------------------------------------------------- /.ignore: -------------------------------------------------------------------------------- 1 | .direnv 2 | vendor 3 | -------------------------------------------------------------------------------- /.pre-commit-hooks.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/.pre-commit-hooks.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/flake.nix -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/main.go -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/vendor/github.com/acaloiaro/go-envparse/.envrc -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/.gitignore: -------------------------------------------------------------------------------- 1 | .direnv 2 | .devenv 3 | -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/.goreleaser.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | builds: 3 | - skip: true 4 | -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/vendor/github.com/acaloiaro/go-envparse/LICENSE -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/NOTICES.txt: -------------------------------------------------------------------------------- 1 | go-envparse 2 | Copyright 2017 HashiCorp, Inc. 3 | -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/vendor/github.com/acaloiaro/go-envparse/README.md -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/envparse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/vendor/github.com/acaloiaro/go-envparse/envparse.go -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/vendor/github.com/acaloiaro/go-envparse/flake.lock -------------------------------------------------------------------------------- /vendor/github.com/acaloiaro/go-envparse/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/vendor/github.com/acaloiaro/go-envparse/flake.nix -------------------------------------------------------------------------------- /vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/acaloiaro/ess/HEAD/vendor/modules.txt -------------------------------------------------------------------------------- /version.txt: -------------------------------------------------------------------------------- 1 | 2.18.2 2 | --------------------------------------------------------------------------------