1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#[cfg(test)]
mod test {}

pub mod api;
pub mod core;
pub mod error;
pub mod model;

// Re-exports
pub use directories::ProjectDirs;

// Important functions and structs
pub use crate::core::install_northstar;
pub use crate::core::utils::update_index;
pub use crate::core::{get_outdated, install, update};
pub use crate::model::{LocalIndex, LocalMod, Mod};