diff options
Diffstat (limited to 'server/bot/src')
-rw-r--r-- | server/bot/src/main.rs | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/server/bot/src/main.rs b/server/bot/src/main.rs index 61cef1f9..18c4617a 100644 --- a/server/bot/src/main.rs +++ b/server/bot/src/main.rs @@ -16,11 +16,10 @@ */ -use std::{thread::sleep, time::Duration}; - use anyhow::Result; use hurrycurry_client_lib::{network::sync::Network, Game}; use hurrycurry_protocol::{glam::Vec2, PacketC, PacketS, PlayerID}; +use std::{thread::sleep, time::Duration}; fn main() -> Result<()> { let mut network = Network::connect("ws://127.0.0.1")?; |