├── .gitignore ├── Godeps ├── Godeps.json └── Readme ├── README.md ├── bash_autocomplete └── main.go /.gitignore: -------------------------------------------------------------------------------- 1 | Godeps/_workspace 2 | -------------------------------------------------------------------------------- /Godeps/Godeps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composehub/cli/HEAD/Godeps/Godeps.json -------------------------------------------------------------------------------- /Godeps/Readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composehub/cli/HEAD/Godeps/Readme -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composehub/cli/HEAD/README.md -------------------------------------------------------------------------------- /bash_autocomplete: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composehub/cli/HEAD/bash_autocomplete -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/composehub/cli/HEAD/main.go --------------------------------------------------------------------------------