use axum::{ debug_handler, response::{IntoResponse, Response}, }; use crate::models::AppError; #[debug_handler] pub async fn auth_login_post_handler() -> Result { Ok(().into_response()) }