This commit is contained in:
2025-12-14 12:53:25 +01:00
parent dbec2e9a74
commit 60bedab4a5
33 changed files with 1975 additions and 48 deletions

9
src/event_bus/network.rs Normal file
View File

@@ -0,0 +1,9 @@
#[derive(Clone, Debug)]
pub enum NetworkEvent {
HttpRequest { method: String, path: String },
HttpResponse { status: u16, path: String },
UdpConnected { peer: String },
UdpDisconnected { peer: String },
WsConnected { peer: String },
WsDisconnected { peer: String },
}