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

12 lines
292 B
Kotlin

package de.steamwar.commands.user
import com.github.ajalt.clikt.core.CliktCommand
import com.github.ajalt.clikt.core.Context
class UserCommand : CliktCommand("user") {
override fun run() =
Unit
override fun help(context: Context): String =
"User related commands"
}