You've already forked AstralRinth
forked from didirus/AstralRinth
* now utilizing tracing better * better tracing * fix mac vs pc oppositional env var issue * modified loading package * added droppable loadingbarid that sends completion message * loading bar * regressed bug on mac * fixed non-updated loading bar on playground * Loading bar improvements --------- Co-authored-by: Jai A <jaiagr+gpg@pm.me>
22 lines
614 B
Rust
22 lines
614 B
Rust
use crate::api::Result;
|
|
use std::path::{Path, PathBuf};
|
|
use theseus::prelude::*;
|
|
|
|
// Creates a pack from a version ID (returns a path to the created profile)
|
|
// invoke('pack_install_version_id', version_id)
|
|
#[tauri::command]
|
|
pub async fn pack_install_version_id(
|
|
version_id: String,
|
|
pack_title: Option<String>,
|
|
) -> Result<PathBuf> {
|
|
let res =
|
|
pack::install_pack_from_version_id(version_id, pack_title).await?;
|
|
Ok(res)
|
|
}
|
|
|
|
#[tauri::command]
|
|
pub async fn pack_install_file(path: &Path) -> Result<PathBuf> {
|
|
let res = pack::install_pack_from_file(path.to_path_buf()).await?;
|
|
Ok(res)
|
|
}
|