server mouse fix

This commit is contained in:
Brad Stein 2025-06-12 01:59:17 -05:00
parent 75b39eb2eb
commit 8f8dbc934d

View File

@ -2,7 +2,7 @@
#![forbid(unsafe_code)]
use std::{pin::Pin, sync::Arc};
use tokio::{fs::OpenOptions, io::AsyncWriteExt};
use tokio::{fs::{File, OpenOptions}, io::AsyncWriteExt, sync::Mutex};
use tokio_stream::{wrappers::ReceiverStream, Stream, StreamExt};
use tonic::{transport::Server, Request, Response, Status};
use tracing::{info, error};