Эх сурвалжийг харах

fix(gsm): add trailing slash

Bryan Lee 1 жил өмнө
parent
commit
6f7cf3ed08

+ 1 - 1
game-server-manager/src/game/kill.rs

@@ -2,7 +2,7 @@ use crate::game::GamesData;
 use crate::ServiceKey;
 use actix_web::{error, post, web, HttpResponse};
 
-#[post("/kill/{port}")]
+#[post("/kill/{port}/")]
 async fn kill(
     port: web::Path<u16>,
     service_key: ServiceKey,