forked from SteamWar/SteamWar
- add Clikt-based `sw` entrypoint and subcommands - include database, user, dev, and profiler commands - wire CLI build and CI install/release steps
10 lines
254 B
Kotlin
10 lines
254 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"))
|
|
}
|
|
} |