added python files and fixed logs, gitignore

This commit is contained in:
2026-05-14 18:58:30 -05:00
parent 88b1cb8076
commit 59477c3ea7
4 changed files with 44 additions and 4 deletions

View File

@@ -71,10 +71,6 @@ async fn handle_connection(mut socket: TcpStream, db: Db) -> std::io::Result<()>
.cloned()
.unwrap_or_else(|| "-1".to_string());
if response == "-1" {
println!("[WAIT] Team requested {}, but no data yet.", target_id);
}
socket.write_all(response.as_bytes()).await?;
}
}