blob: 036a35aafc78c12ae6fb6d2209707fa76cfb5e36 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
use std::sync::Arc;
use axum::{extract::State, response::IntoResponse};
use crate::server::{driver::SellershutDriver, error::AppError};
async fn auth(
State(client): State<Arc<dyn SellershutDriver>>,
) -> Result<impl IntoResponse, AppError> {
Ok(())
}
|