From acf5e40d02a25a6e99ef23ef61aca8cd261de9d3 Mon Sep 17 00:00:00 2001 From: Jomar Milan Date: Tue, 9 Jun 2026 17:15:24 -0700 Subject: Add player hand display in browser --- src/main.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'src/main.rs') diff --git a/src/main.rs b/src/main.rs index d9852e3..fc0a7bb 100644 --- a/src/main.rs +++ b/src/main.rs @@ -65,6 +65,7 @@ async fn serve_static(Path(path): Path) -> Response { Some(content) => { let mime = match path.split('.').next_back() { Some("js") => "application/javascript", + Some("css") => "text/css", _ => "application/octet-stream", }; ([(header::CONTENT_TYPE, mime)], content.data).into_response() @@ -73,7 +74,9 @@ async fn serve_static(Path(path): Path) -> Response { } } -async fn find_session(Query(query): Query>) -> axum::response::Result { +async fn find_session( + Query(query): Query>, +) -> axum::response::Result { let id = query.get("id").ok_or(StatusCode::NOT_FOUND)?; Ok(Redirect::to(format!("/session/{}", id).as_str())) } -- cgit v1.2.3