pub mod get { use crate::{ error::Internal, ui::assets::{Asset, Assets}, }; #[allow(clippy::unused_async)] pub async fn handler() -> Result { Assets::index() } }