├── .gitignore ├── LICENSE ├── README.md ├── cmd ├── apikey.go └── root.go ├── components └── prompts.go ├── configs ├── config.go └── env.go ├── create_executables.bash ├── go.mod ├── go.sum ├── main.go └── models ├── responses.go └── userapi.go /.gitignore: -------------------------------------------------------------------------------- 1 | dist/* 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/README.md -------------------------------------------------------------------------------- /cmd/apikey.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/cmd/apikey.go -------------------------------------------------------------------------------- /cmd/root.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/cmd/root.go -------------------------------------------------------------------------------- /components/prompts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/components/prompts.go -------------------------------------------------------------------------------- /configs/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/configs/config.go -------------------------------------------------------------------------------- /configs/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/configs/env.go -------------------------------------------------------------------------------- /create_executables.bash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/create_executables.bash -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/go.sum -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/main.go -------------------------------------------------------------------------------- /models/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/models/responses.go -------------------------------------------------------------------------------- /models/userapi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MikeDaniel18/oh-heck-cli/HEAD/models/userapi.go --------------------------------------------------------------------------------