1use axum::Router; 2use images::routes::root_images_routes; 3 4pub mod images; 5 6pub async fn root_assets_routes() -> Router { 7 Router::new().nest("/assets", root_images_routes().await) 8}