10 lines
207 B
Rust
10 lines
207 B
Rust
|
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()
|
||
|
}
|