8 lines
175 B
Kotlin
8 lines
175 B
Kotlin
package com.infendro.cli.command.help
|
|
|
|
import com.infendro.cli.command.Command
|
|
|
|
object NoOpHelpRenderer : HelpRenderer {
|
|
override fun render(path: List<Command>) = null
|
|
}
|