use std::sync::Arc; use axum::{extract::State, response::IntoResponse}; use crate::server::{driver::SellershutDriver, error::AppError}; async fn auth( State(client): State>, ) -> Result { Ok(()) }