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 /server/src/import.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 'server/src/import.rs')
-rw-r--r-- | server/src/import.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/import.rs b/server/src/import.rs index 8d8198a..d3919b5 100644 --- a/server/src/import.rs +++ b/server/src/import.rs @@ -7,7 +7,7 @@ use crate::{database::Database, federation::Federation, CONF}; use anyhow::{anyhow, bail, Context, Ok}; use async_recursion::async_recursion; use futures::{stream::FuturesUnordered, StreamExt, TryFutureExt}; -use jellybase::async_cache_file; +use jellybase::cache::async_cache_file; use jellyclient::Session; use jellycommon::{AssetLocation, MediaSource, Node, NodePrivate, RemoteImportOptions}; use log::{debug, error, info}; |