This commit is contained in:
2026-02-25 22:07:34 +08:00
parent fcec19117d
commit cf106cab58
3 changed files with 5 additions and 3 deletions

View File

@@ -289,6 +289,7 @@ pub async fn download_file(Path(filename): Path<String>) -> Result<Response, Sta
#[derive(Debug, serde::Deserialize)]
pub struct TriggerBuildBody {
#[allow(dead_code)]
pub platforms: Vec<String>,
}

View File

@@ -6,6 +6,7 @@ use uuid::Uuid;
use funmc_shared::protocol::SignalingMessage;
use tokio::sync::mpsc;
#[allow(dead_code)]
pub struct SignalingSession {
pub user_id: Uuid,
pub tx: mpsc::UnboundedSender<SignalingMessage>,