We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CompletionCommand
Hey, I'm a bit unsure how to integrate a SuspendingCliktCommand with CompletionCommand. When having something like the following:
SuspendingCliktCommand
object EtaDeploy : SuspendingCliktCommand() { init { subcommands( CompletionCommand(name = "completion") ) } override suspend fun run() { ... } }
subcommand only accepts suspending commands. Is there a way I can still integrate it?
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
Hey,
I'm a bit unsure how to integrate a
SuspendingCliktCommand
withCompletionCommand
. When having something like the following:subcommand only accepts suspending commands. Is there a way I can still integrate it?
The text was updated successfully, but these errors were encountered: