2024-08-06 00:18:09 +02:00
|
|
|
use askama::Template;
|
|
|
|
use askama_axum::IntoResponse;
|
|
|
|
|
|
|
|
#[derive(Template)]
|
|
|
|
#[template(path = "pages/cps.html")]
|
|
|
|
struct CpsResponse;
|
|
|
|
|
|
|
|
pub async fn cps() -> impl IntoResponse {
|
|
|
|
CpsResponse.into_response()
|
2024-08-08 15:01:28 +02:00
|
|
|
}
|