mylloon.fr/src/routes/gaming.rs

8 lines
144 B
Rust
Raw Normal View History

2023-04-14 18:03:30 +02:00
use actix_web::{get, Responder};
#[get("/gaming")]
pub async fn page() -> impl Responder {
// TODO
actix_web::web::Redirect::to("/")
}