fix: python keep alive

This commit is contained in:
2025-11-20 14:54:32 -05:00
Unverified
parent 67a922767d
commit 348e8ae786
2 changed files with 26 additions and 26 deletions

View File

@@ -486,6 +486,9 @@ async fn handle_connection(
// TODO: Start tournaments
else if text == "PING" {
let _ = send(&tx, "PONG");
}
else {
let _ = send(&tx, "ERROR:UNKNOWN");
}