blob: 81a874c9b0119dce830d1c30c106874b97128beb (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
pub mod get {
use crate::{
error::Internal,
ui::assets::{Asset, Assets},
};
#[allow(clippy::unused_async)]
pub async fn handler() -> Result<Asset, Internal> {
Assets::index()
}
}
|