pub mod get { use axum::extract::Path; use crate::ui::assets::{Asset, Assets, Error}; pub async fn handler(Path(path): Path) -> Result { Assets::load(path) } }