| 35 | // 应用状态:保存两个摄像头的广播通道 |
| 36 | #[derive(Clone)] |
| 37 | struct AppState { |
| 38 | tx_left: broadcast::Sender<Bytes>, |
| 39 | tx_right: broadcast::Sender<Bytes>, |
| 40 | } |
| 41 | |
| 42 | #[cfg(target_os = "linux")] |
| 43 | #[tokio::main] |
nothing calls this directly
no outgoing calls
no test coverage detected