You've already forked AstralRinth
forked from didirus/AstralRinth
* Initial authentication implementation * Store user info in the database, improve encapsulation in profiles * Add user list, remove unused dependencies, add spantraces * Implement user remove, update UUID crate * Add user set-default * Revert submodule macro usage * Make tracing significantly less verbose
22 lines
347 B
Rust
22 lines
347 B
Rust
/*!
|
|
# Theseus
|
|
|
|
Theseus is a library which provides utilities for launching minecraft, creating Modrinth mod packs,
|
|
and launching Modrinth mod packs
|
|
*/
|
|
#![warn(unused_import_braces)]
|
|
#![deny(unused_must_use)]
|
|
|
|
#[macro_use]
|
|
mod util;
|
|
|
|
mod api;
|
|
mod config;
|
|
mod error;
|
|
mod launcher;
|
|
mod state;
|
|
|
|
pub use api::*;
|
|
pub use error::*;
|
|
pub use state::State;
|