7 lines
144 B
Rust
7 lines
144 B
Rust
use actix_web::{get, Responder};
|
|
|
|
#[get("/gaming")]
|
|
pub async fn page() -> impl Responder {
|
|
// TODO
|
|
actix_web::web::Redirect::to("/")
|
|
}
|