more consistent imports

This commit is contained in:
2025-08-13 15:36:04 +02:00
parent 2e4f45054a
commit 4ea9068850
5 changed files with 10 additions and 10 deletions

View File

@@ -1,17 +1,17 @@
use crate::{
AppState, Backend, NameUpdateError,
language::language,
page::{MyMessage, Page},
AppState, Backend, NameUpdateError,
};
use axum::{
Form, Router,
extract::{Path, State},
http::HeaderMap,
response::{IntoResponse, Response},
routing::{get, post},
Form, Router,
};
use axum_extra::extract::{CookieJar, PrivateCookieJar};
use maud::{html, Markup, PreEscaped};
use maud::{Markup, PreEscaped, html};
use serde::Deserialize;
use std::sync::Arc;
use uuid::Uuid;