Add UserSearch
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-10-25 13:55:03 +02:00
parent 0665c55b11
commit a76d61201c
8 changed files with 96 additions and 43 deletions

View File

@@ -8,10 +8,11 @@ import de.steamwar.commands.database.InfoCommand
import de.steamwar.commands.database.ResetCommand
import de.steamwar.commands.user.UserCommand
import de.steamwar.commands.user.UserInfoCommand
import de.steamwar.commands.user.UserSearchCommand
fun main(args: Array<String>) = SteamWar()
.subcommands(
DatabaseCommand().subcommands(InfoCommand(), ResetCommand()),
UserCommand().subcommands(UserInfoCommand())
UserCommand().subcommands(UserInfoCommand(), UserSearchCommand())
)
.main(args)