Fix UserInfoCommand.kt file name
All checks were successful
SteamWarCI Build successful

This commit is contained in:
2025-10-25 13:09:01 +02:00
parent 25d76ea09f
commit 0665c55b11

View File

@ -7,11 +7,11 @@ 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
import de.steamwar.commands.user.UserInfoCommand
fun main(args: Array<String>) = SteamWar()
.subcommands(
DatabaseCommand().subcommands(InfoCommand(), ResetCommand()),
UserCommand().subcommands(UsesrInfoCommand())
UserCommand().subcommands(UserInfoCommand())
)
.main(args)