1use post_archiver::manager::PostArchiverManager; 2use tokio::sync::Mutex; 3 4pub mod download; 5pub mod sync; 6 7pub type Manager = Mutex<PostArchiverManager>;