mirror of
https://github.com/modrinth/code.git
synced 2026-08-25 17:14:50 +00:00
* feat: better error handling + copy details btn for info * refactor: clean up error handling into diagnostics * feat: extra info for failure states + queuing properly * fix: cleanup * fix: lint * fix: fmt * fix: cleanup * fix: cleanup * fix: lint * feat: use bon builder
22 lines
708 B
Rust
22 lines
708 B
Rust
mod diagnostics;
|
|
pub mod events;
|
|
pub mod model;
|
|
pub mod recovery;
|
|
pub mod runner;
|
|
pub mod store;
|
|
|
|
pub use events::InstallProgressReporter;
|
|
pub use model::{
|
|
InstallErrorContext, InstallErrorView, InstallJavaStep,
|
|
InstallJobEventKind, InstallJobKind, InstallJobSnapshot, InstallJobStatus,
|
|
InstallModpackPreview, InstallPhaseDetails, InstallPhaseId,
|
|
InstallPostInstallEdit, InstallProgress, InstallProgressSecondary,
|
|
InstallRequest,
|
|
};
|
|
pub use runner::{
|
|
cancel_job, create_instance, create_modpack_instance, dismiss_job,
|
|
duplicate_instance, get_job, import_instance, install_existing_instance,
|
|
install_pack_to_existing_instance, job_support_details, list_jobs,
|
|
retry_job,
|
|
};
|