use actix_web::{get, Responder};
#[get("/cours")]
async fn page() -> impl Responder {
// TODO
actix_web::web::Redirect::to("/")
}