Package-level declarations
Types
Link copied to clipboard
abstract class CoreChainedCliktCommand<T>(name: String? = null) : BaseCliktCommand<CoreChainedCliktCommand<T>>
A version of CoreCliktCommand that returns a value from the run function, which is then passed to subcommands.
Link copied to clipboard
abstract class CoreSuspendingCliktCommand(name: String? = null) : BaseCliktCommand<CoreSuspendingCliktCommand>
A version of CoreCliktCommand that supports a suspending run function.
Link copied to clipboard
A CoreSuspendingCliktCommand that has a default implementation of run that is a no-op.