mirror of
https://github.com/GayPizzaSpecifications/pork.git
synced 2025-10-09 15:49:39 +00:00
24 lines
440 B
Kotlin
24 lines
440 B
Kotlin
package gay.pizza.pork.tool
|
|
|
|
import com.github.ajalt.clikt.core.CliktCommand
|
|
import com.github.ajalt.clikt.core.subcommands
|
|
|
|
class RootCommand : CliktCommand(
|
|
help = "Pork - The BBQ Language",
|
|
name = "pork"
|
|
) {
|
|
init {
|
|
subcommands(
|
|
RunCommand(),
|
|
HighlightCommand(),
|
|
TokenizeCommand(),
|
|
ReprintCommand(),
|
|
ParseCommand(),
|
|
AstCommand(),
|
|
AttributeCommand()
|
|
)
|
|
}
|
|
|
|
override fun run() {}
|
|
}
|