├── .github ├── .kodiak.toml └── workflows │ ├── release.yaml │ ├── tag.yml │ └── test.yaml ├── .gitignore ├── .goreleaser.yml ├── LICENSE ├── Readme.md ├── cmd ├── cleanup.go ├── cleanup_test.go ├── completion.go ├── completion_test.go ├── delete.go ├── delete_test.go ├── import.go ├── import_test.go ├── namespace.go ├── namespace_test.go ├── root.go ├── set.go ├── set_test.go ├── shellwrapper.go ├── shellwrapper_test.go ├── version.go └── version_test.go ├── config └── config.go ├── demo.cast ├── doc ├── demo.gif └── demo_source.cast ├── go.mod ├── go.sum ├── konf ├── id.go ├── id_test.go ├── konfig.go ├── split.go └── split_test.go ├── log └── log.go ├── main.go ├── prompt ├── prompt.go └── prompt_test.go ├── store ├── error.go ├── store.go └── store_test.go ├── testhelper ├── shellwrapper.sh └── unit.go └── utils ├── dir.go └── dir_test.go /.github/.kodiak.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/.github/.kodiak.toml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.github/workflows/tag.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/.github/workflows/tag.yml -------------------------------------------------------------------------------- /.github/workflows/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/.github/workflows/test.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/.gitignore -------------------------------------------------------------------------------- /.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/.goreleaser.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/Readme.md -------------------------------------------------------------------------------- /cmd/cleanup.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/cleanup.go -------------------------------------------------------------------------------- /cmd/cleanup_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/cleanup_test.go -------------------------------------------------------------------------------- /cmd/completion.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/completion.go -------------------------------------------------------------------------------- /cmd/completion_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/completion_test.go -------------------------------------------------------------------------------- /cmd/delete.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/delete.go -------------------------------------------------------------------------------- /cmd/delete_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/delete_test.go -------------------------------------------------------------------------------- /cmd/import.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/import.go -------------------------------------------------------------------------------- /cmd/import_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/import_test.go -------------------------------------------------------------------------------- /cmd/namespace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/namespace.go -------------------------------------------------------------------------------- /cmd/namespace_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/namespace_test.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/root.go -------------------------------------------------------------------------------- /cmd/set.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/set.go -------------------------------------------------------------------------------- /cmd/set_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/set_test.go -------------------------------------------------------------------------------- /cmd/shellwrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/shellwrapper.go -------------------------------------------------------------------------------- /cmd/shellwrapper_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/shellwrapper_test.go -------------------------------------------------------------------------------- /cmd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/version.go -------------------------------------------------------------------------------- /cmd/version_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/cmd/version_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/config/config.go -------------------------------------------------------------------------------- /demo.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/demo.cast -------------------------------------------------------------------------------- /doc/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/doc/demo.gif -------------------------------------------------------------------------------- /doc/demo_source.cast: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/doc/demo_source.cast -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/go.sum -------------------------------------------------------------------------------- /konf/id.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/konf/id.go -------------------------------------------------------------------------------- /konf/id_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/konf/id_test.go -------------------------------------------------------------------------------- /konf/konfig.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/konf/konfig.go -------------------------------------------------------------------------------- /konf/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/konf/split.go -------------------------------------------------------------------------------- /konf/split_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/konf/split_test.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/log/log.go -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/main.go -------------------------------------------------------------------------------- /prompt/prompt.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/prompt/prompt.go -------------------------------------------------------------------------------- /prompt/prompt_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/prompt/prompt_test.go -------------------------------------------------------------------------------- /store/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/store/error.go -------------------------------------------------------------------------------- /store/store.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/store/store.go -------------------------------------------------------------------------------- /store/store_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/store/store_test.go -------------------------------------------------------------------------------- /testhelper/shellwrapper.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/testhelper/shellwrapper.sh -------------------------------------------------------------------------------- /testhelper/unit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/testhelper/unit.go -------------------------------------------------------------------------------- /utils/dir.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/utils/dir.go -------------------------------------------------------------------------------- /utils/dir_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SimonTheLeg/konf-go/HEAD/utils/dir_test.go --------------------------------------------------------------------------------