custom extractors rejection
Some checks failed
Rust / Test (push) Has been cancelled
Rust / Rustfmt (push) Has been cancelled
Rust / Clippy (push) Has been cancelled
Rust / Code coverage (push) Has been cancelled

This commit is contained in:
Alphonse Paix
2025-09-27 02:28:04 +02:00
parent f9ae3f42a6
commit f43e143bf6
6 changed files with 68 additions and 13 deletions

View File

@@ -1,7 +1,11 @@
use crate::{routes::generate_token, startup::AppState, templates::ConfirmTemplate};
use crate::{
routes::{Query, generate_token},
startup::AppState,
templates::ConfirmTemplate,
};
use askama::Template;
use axum::{
extract::{Query, State},
extract::State,
http::StatusCode,
response::{Html, IntoResponse, Response},
};