implement descriptions, improve default help

This commit is contained in:
2026-01-09 20:13:19 +01:00
parent 47834c91d8
commit ff87ae90f5
9 changed files with 204 additions and 108 deletions

View File

@@ -0,0 +1,7 @@
package com.infendro.cli.command.help
import com.infendro.cli.command.Command
object NoOpHelpRenderer : HelpRenderer {
override fun render(path: List<Command>) = null
}