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