mylloon.fr/src/routes/cours.rs
Mylloon ac2c50e567
Some checks are pending
ci/woodpecker/push/publish Pipeline is pending
add cours endpoint
2023-04-16 13:18:15 +02:00

7 lines
143 B
Rust

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