You've already forked AstralRinth
forked from didirus/AstralRinth
11 lines
282 B
Rust
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;
|