├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── linux64 │ └── cf-targets-plugin ├── osx │ └── cf-targets-plugin └── win64 │ └── cf-targets-plugin.exe ├── cf_targets.go ├── cf_targets_suite_test.go ├── cf_targets_test.go ├── go.mod ├── go.sum └── repo-index.yml /.gitignore: -------------------------------------------------------------------------------- 1 | /cf-targets-plugin 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: go 2 | go: 3 | - tip 4 | 5 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/README.md -------------------------------------------------------------------------------- /bin/linux64/cf-targets-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/bin/linux64/cf-targets-plugin -------------------------------------------------------------------------------- /bin/osx/cf-targets-plugin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/bin/osx/cf-targets-plugin -------------------------------------------------------------------------------- /bin/win64/cf-targets-plugin.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/bin/win64/cf-targets-plugin.exe -------------------------------------------------------------------------------- /cf_targets.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/cf_targets.go -------------------------------------------------------------------------------- /cf_targets_suite_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/cf_targets_suite_test.go -------------------------------------------------------------------------------- /cf_targets_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/cf_targets_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/go.sum -------------------------------------------------------------------------------- /repo-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guidowb/cf-targets-plugin/HEAD/repo-index.yml --------------------------------------------------------------------------------