pub mod api;
pub mod core;
pub mod error;
pub mod model;
pub const CORE_MODS: [&str; 3] = [
"northstar.custom",
"northstar.customservers",
"northstar.client",
];
pub const TITANFALL_STEAM_ID: u32 = 1237970;
pub const TITANFALL_ORIGIN_IDS: [&str; 2] = ["Origin.OFR.50.0001452", "Origin.OFR.50.0001456"];
pub mod prelude {
pub use crate::api::get_package_index;
pub use crate::core::manage::{
download, download_with_progress, install_mod, install_northstar, install_with_sanity,
};
#[allow(deprecated)]
pub use crate::core::manage::uninstall;
pub use crate::core::utils::{find_mods, get_enabled_mods, resolve_deps};
#[cfg(all(target_os = "linux", feature = "proton"))]
pub use crate::core::{download_ns_proton, install_ns_proton, latest_release};
#[cfg(feature = "steam")]
pub use crate::core::{steam_dir, steam_libraries, titanfall};
pub use crate::error::ThermiteError;
pub use crate::CORE_MODS;
pub use crate::TITANFALL_STEAM_ID;
}