Ragequit.

This commit is contained in:
2026-05-13 23:51:00 +03:00
parent efa3cb63b9
commit 547a77d52a
25 changed files with 425 additions and 156 deletions
+2 -1
View File
@@ -14,5 +14,6 @@ import models.HumanBeing
data class Request(
val commandName: String,
val args: List<String> = emptyList(),
val humanBeing: HumanBeing? = null
val humanBeing: HumanBeing? = null,
//val jwt: String
)
@@ -18,4 +18,5 @@ data class Response(
val success: Boolean,
val message: String,
val commands: List<CommandInfo>? = null,
//val jwt: String
)