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