Files
SteamWar/CLI/src/commands/SteamWar.kt
T
2026-05-16 23:08:09 +02:00

10 lines
255 B
Kotlin

package de.steamwar.commands
import com.github.ajalt.clikt.core.CliktCommand
import com.github.ajalt.mordant.rendering.TextStyles
class SteamWar : CliktCommand(name = "sw") {
override fun run() {
echo(TextStyles.bold("SteamWar-CLI"))
}
}