You've already forked AstralRinth
forked from didirus/AstralRinth
* initial commit * merge fixes * added sanitizing * linter * Improve sign in UI * simple simple! * bump version --------- Co-authored-by: CodexAdrian <83074853+CodexAdrian@users.noreply.github.com> Co-authored-by: Jai A <jaiagr+gpg@pm.me>
42 lines
1010 B
Rust
42 lines
1010 B
Rust
//! API for interacting with Theseus
|
|
pub mod auth;
|
|
pub mod handler;
|
|
pub mod hydra;
|
|
pub mod jre;
|
|
pub mod logs;
|
|
pub mod metadata;
|
|
pub mod mr_auth;
|
|
pub mod pack;
|
|
pub mod process;
|
|
pub mod profile;
|
|
pub mod safety;
|
|
pub mod settings;
|
|
pub mod tags;
|
|
|
|
pub mod data {
|
|
pub use crate::state::{
|
|
DirectoryInfo, Hooks, JavaSettings, LinkedData, MemorySettings,
|
|
ModLoader, ModrinthCredentials, ModrinthCredentialsResult,
|
|
ModrinthProject, ModrinthTeamMember, ModrinthUser, ModrinthVersion,
|
|
ProfileMetadata, ProjectMetadata, Settings, Theme, WindowSize,
|
|
};
|
|
}
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
auth::{self, Credentials},
|
|
data::*,
|
|
event::CommandPayload,
|
|
jre, metadata, pack, process,
|
|
profile::{self, create, Profile},
|
|
settings,
|
|
state::JavaGlobals,
|
|
state::{Dependency, ProfilePathId, ProjectPathId},
|
|
util::{
|
|
io::{canonicalize, IOError},
|
|
jre::JavaVersion,
|
|
},
|
|
State,
|
|
};
|
|
}
|