17 lines
599 B
Kotlin
17 lines
599 B
Kotlin
package de.steamwar
|
|
|
|
import com.github.ajalt.clikt.core.main
|
|
import com.github.ajalt.clikt.core.subcommands
|
|
import de.steamwar.commands.SteamWar
|
|
import de.steamwar.commands.database.DatabaseCommand
|
|
import de.steamwar.commands.database.InfoCommand
|
|
import de.steamwar.commands.database.ResetCommand
|
|
import de.steamwar.commands.user.UserCommand
|
|
import de.steamwar.commands.user.UsesrInfoCommand
|
|
|
|
fun main(args: Array<String>) = SteamWar()
|
|
.subcommands(
|
|
DatabaseCommand().subcommands(InfoCommand(), ResetCommand()),
|
|
UserCommand().subcommands(UsesrInfoCommand())
|
|
)
|
|
.main(args) |