You've already forked AstralRinth
forked from didirus/AstralRinth
* child process api * added hook to js * process API + restructured process state storage * formatting * added path-pid check and fixed probs * prettier * added profile checking function --------- Co-authored-by: Wyatt <wyatt@modrinth.com>
25 lines
505 B
Rust
25 lines
505 B
Rust
//! API for interacting with Theseus
|
|
pub mod auth;
|
|
pub mod process;
|
|
pub mod profile;
|
|
pub mod profile_create;
|
|
pub mod settings;
|
|
pub mod tags;
|
|
|
|
pub mod data {
|
|
pub use crate::state::{
|
|
DirectoryInfo, Hooks, JavaSettings, MemorySettings, ModLoader,
|
|
ProfileMetadata, Settings, WindowSize,
|
|
};
|
|
}
|
|
|
|
pub mod prelude {
|
|
pub use crate::{
|
|
auth::{self, Credentials},
|
|
data::*,
|
|
process,
|
|
profile::{self, Profile},
|
|
profile_create, settings, State,
|
|
};
|
|
}
|