You've already forked AstralRinth
forked from didirus/AstralRinth
34 lines
895 B
Rust
34 lines
895 B
Rust
//! # Theseus
|
|
//!
|
|
//! Theseus is a library which provides utilities for launching minecraft, creating Modrinth mod packs,
|
|
//! and launching Modrinth mod packs
|
|
|
|
#![warn(missing_docs, unused_import_braces, missing_debug_implementations)]
|
|
|
|
static LAUNCHER_WORK_DIR: &'static str = "./launcher";
|
|
|
|
mod data;
|
|
pub mod launcher;
|
|
pub mod modpack;
|
|
mod util;
|
|
|
|
#[derive(thiserror::Error, Debug)]
|
|
pub enum Error {
|
|
#[error("Launcher error: {0}")]
|
|
LauncherError(#[from] launcher::LauncherError),
|
|
|
|
#[error("Modpack error: {0}")]
|
|
ModpackError(#[from] modpack::ModpackError),
|
|
|
|
#[error("Data error: {0}")]
|
|
DaedalusError(#[from] data::DataError),
|
|
}
|
|
|
|
pub async fn init() -> Result<(), Error> {
|
|
std::fs::create_dir_all(LAUNCHER_WORK_DIR).expect("Unable to create launcher root directory!");
|
|
crate::data::Metadata::init().await?;
|
|
crate::data::Settings::init().await?;
|
|
|
|
Ok(())
|
|
}
|