use actix_web::{put, web, HttpResponse, Result}; use bd2::proto::proto_net::MiniGameBingoInfoRequest; use crypto::network::parse_packet; use gameserver::logic::game::mini_game_bingo_info; use sqlx::SqlitePool; #[put("MiniGameBingoInfo")] async fn mini_game_bingo_info_handler( pool: web::Data, body: String, user_id: web::ReqData, ) -> Result { let uid = *user_id; let req = parse_packet::("MiniGameBingoInfo", &body).map_err(|e| { tracing::warn!("Failed to parse MiniGameBingoInfo: {}", e); actix_web::error::ErrorBadRequest("Invalid packet") })?; let response = mini_game_bingo_info::handle(&pool, uid, req).await; Ok(HttpResponse::Ok().json(response)) }