Initial Commit

This commit is contained in:
2025-10-25 12:50:47 +02:00
commit 28f6921788
27 changed files with 853 additions and 0 deletions

17
src/main/kotlin/Main.kt Normal file
View File

@ -0,0 +1,17 @@
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)