diff options
Diffstat (limited to 'import/src/tmdb.rs')
-rw-r--r-- | import/src/tmdb.rs | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/import/src/tmdb.rs b/import/src/tmdb.rs index 45d7650..dff0e95 100644 --- a/import/src/tmdb.rs +++ b/import/src/tmdb.rs @@ -6,13 +6,11 @@ use crate::USER_AGENT; use anyhow::{anyhow, bail, Context}; use bincode::{Decode, Encode}; -use jellybase::{ - cache::{async_cache_file, async_cache_memory, CachePath}, - common::{ - chrono::{format::Parsed, Utc}, - TmdbKind, - }, +use jellybase::common::{ + chrono::{format::Parsed, Utc}, + TmdbKind, }; +use jellycache::{async_cache_file, async_cache_memory, CachePath}; use log::info; use reqwest::{ header::{HeaderMap, HeaderName, HeaderValue}, |