This commit is contained in:
2026-09-13 20:52:07 +02:00
parent 9a07b368d6
commit 8d48b1617b
10 changed files with 239 additions and 1 deletions
+7
View File
@@ -0,0 +1,7 @@
// This is the first point when WebRTC ask for a connection
use crate::core::AppState;
use crate::models::user;
use axum::extract::ws::WebSocket;
pub async fn ws_entrypoint_handler(socket: WebSocket, state: AppState, user: user::Model) {}