diff options
Diffstat (limited to 'import/src/tmdb.rs')
-rw-r--r-- | import/src/tmdb.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/import/src/tmdb.rs b/import/src/tmdb.rs index 522d9d6..678ce61 100644 --- a/import/src/tmdb.rs +++ b/import/src/tmdb.rs @@ -5,10 +5,12 @@ */ use anyhow::{anyhow, bail, Context}; use bincode::{Decode, Encode}; -use jellybase::cache::{async_cache_file, async_cache_memory, CachePath}; -use jellycommon::{ - chrono::{format::Parsed, Utc}, - TmdbKind, +use jellybase::{ + cache::{async_cache_file, async_cache_memory, CachePath}, + common::{ + chrono::{format::Parsed, Utc}, + TmdbKind, + }, }; use log::info; use reqwest::{ |