Name handler return type

This commit is contained in:
Aode (lion) 2021-12-30 21:23:50 -06:00
parent 2ad35f1f1c
commit d2bfb445d3

View file

@ -1,5 +1,5 @@
use actix_web::web::{Data, Json};
use actix_web::{App, HttpResponse, HttpServer, Responder};
use actix_web::{App, HttpResponse, HttpServer};
use std::collections::HashMap;
use std::sync::{Arc, Mutex};
use std::time::Duration;
@ -220,7 +220,7 @@ impl Drop for GameDropper {
}
}
async fn start(start: Json<Start>, game_state: Data<GameState>) -> impl Responder {
async fn start(start: Json<Start>, game_state: Data<GameState>) -> HttpResponse {
let game_id = GameId::new();
let (tx, mut rx) = tokio::sync::mpsc::channel(1);
@ -258,7 +258,7 @@ async fn start(start: Json<Start>, game_state: Data<GameState>) -> impl Responde
})
}
async fn make_move(action: Json<Move>, game_state: Data<GameState>) -> impl Responder {
async fn make_move(action: Json<Move>, game_state: Data<GameState>) -> HttpResponse {
if let Some(data) = game_state.data_for_id(&action.0.game_id) {
let (tx, rx) = tokio::sync::oneshot::channel();