use actix_web::{get, Responder}; #[get("/cours")] async fn page() -> impl Responder { // Page de notes de cours // Cf. https://univ.mylloon.fr/ // Cf. https://github.com/xy2z/PineDocs actix_web::web::Redirect::to("/") }