├── Gopkg.lock ├── Gopkg.toml ├── LICENSE ├── Makefile ├── README.md ├── cmd ├── api.go ├── autogenerate │ └── autogenerate.go ├── autogenerated.go ├── configure.go └── root.go ├── definitions ├── README.md ├── definitions.go ├── definitions.toml └── definitions_test.go ├── lib ├── .cf │ └── credentials ├── creds.go └── creds_test.go ├── logo.png └── main.go /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/README.md -------------------------------------------------------------------------------- /cmd/api.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/cmd/api.go -------------------------------------------------------------------------------- /cmd/autogenerate/autogenerate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/cmd/autogenerate/autogenerate.go -------------------------------------------------------------------------------- /cmd/autogenerated.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/cmd/autogenerated.go -------------------------------------------------------------------------------- /cmd/configure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/cmd/configure.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/cmd/root.go -------------------------------------------------------------------------------- /definitions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/definitions/README.md -------------------------------------------------------------------------------- /definitions/definitions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/definitions/definitions.go -------------------------------------------------------------------------------- /definitions/definitions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/definitions/definitions.toml -------------------------------------------------------------------------------- /definitions/definitions_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/definitions/definitions_test.go -------------------------------------------------------------------------------- /lib/.cf/credentials: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/lib/.cf/credentials -------------------------------------------------------------------------------- /lib/creds.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/lib/creds.go -------------------------------------------------------------------------------- /lib/creds_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/lib/creds_test.go -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/logo.png -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ejcx/cf/HEAD/main.go --------------------------------------------------------------------------------