mylloon.fr/src/routes/cours.rs

10 lines
237 B
Rust
Raw Normal View History

2023-04-16 13:18:15 +02:00
use actix_web::{get, Responder};
#[get("/cours")]
async fn page() -> impl Responder {
2023-10-23 01:20:16 +02:00
// Page de notes de cours
// Cf. https://univ.mylloon.fr/
// Cf. https://github.com/xy2z/PineDocs
2023-04-16 13:18:15 +02:00
actix_web::web::Redirect::to("/")
}