diff options
Diffstat (limited to 'src/ui/handlers/swatch.rs')
| -rw-r--r-- | src/ui/handlers/swatch.rs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/src/ui/handlers/swatch.rs b/src/ui/handlers/swatch.rs new file mode 100644 index 0000000..4562b04 --- /dev/null +++ b/src/ui/handlers/swatch.rs @@ -0,0 +1,8 @@ +use crate::{ + error::Internal, + ui::assets::{Asset, Assets}, +}; + +pub async fn handler() -> Result<Asset, Internal> { + Assets::index() +} |
