Hey,
In the blocking non-suspending world, we have the following NoOpCliktCommand command if we simply wanna use it as a container per se for different sub modules.
Is there an equivalent for the suspending world? Something like the following for instance?
abstract class NoOpSuspendingCliktCommand(name: String? = null) : SuspendingCliktCommand(name) {
override suspend fun run() = Unit
}
Hey, In the blocking non-suspending world, we have the following
NoOpCliktCommand
command if we simply wanna use it as a container per se for different sub modules. Is there an equivalent for the suspending world? Something like the following for instance?Thanks in advance :)