Files
AstralRinth/theseus/src/lib.rs
2021-11-20 12:02:46 -08:00

11 lines
282 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)]
pub mod launcher;
pub mod modpack;
mod util;