use axum::extract::Path; use axum_extra::TypedHeader; use headers::IfNoneMatch; use crate::ui::assets::{Error, Response}; pub async fn handler( Path(path): Path, TypedHeader(if_none_match): TypedHeader, ) -> Result { Response::load(&path, &if_none_match) }