2023-04-16 13:18:15 +02:00
|
|
|
use actix_web::{get, Responder};
|
|
|
|
|
|
|
|
#[get("/cours")]
|
2023-10-15 20:58:20 +02:00
|
|
|
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("/")
|
|
|
|
}
|