add message when the server starts

This commit is contained in:
zyl 2024-09-09 15:14:04 -07:00
parent 257d85bf21
commit 6b72840495

View file

@ -130,6 +130,7 @@ impl Server {
}); });
} }
}); });
println!("server is started!");
handle_ticks(self.data.clone()).await?; handle_ticks(self.data.clone()).await?;
tokio::time::sleep(std::time::Duration::from_millis(1)).await; tokio::time::sleep(std::time::Duration::from_millis(1)).await;