diff options
author | metamuffin <metamuffin@disroot.org> | 2023-10-01 23:51:31 +0200 |
---|---|---|
committer | metamuffin <metamuffin@disroot.org> | 2023-10-01 23:51:31 +0200 |
commit | 556b84b88a65c3df53ad35ca75b2c1a8fa360040 (patch) | |
tree | 73e9535d83717dea7a37134b7bdf63fba39cc3db /transcoder/src/image.rs | |
parent | 8b6a555d2dff18cad1135ebe62ae8fbc4a9f87c9 (diff) | |
download | jellything-556b84b88a65c3df53ad35ca75b2c1a8fa360040.tar jellything-556b84b88a65c3df53ad35ca75b2c1a8fa360040.tar.bz2 jellything-556b84b88a65c3df53ad35ca75b2c1a8fa360040.tar.zst |
move caching to its own file
Diffstat (limited to 'transcoder/src/image.rs')
-rw-r--r-- | transcoder/src/image.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/transcoder/src/image.rs b/transcoder/src/image.rs index 3865348..a9b1533 100644 --- a/transcoder/src/image.rs +++ b/transcoder/src/image.rs @@ -1,6 +1,6 @@ use anyhow::Context; use image::{imageops::FilterType, ImageFormat}; -use jellybase::{async_cache_file, AssetLocationExt}; +use jellybase::{cache::async_cache_file, AssetLocationExt}; use jellycommon::AssetLocation; use log::{debug, info}; use rgb::FromSlice; |