You've already forked pages
forked from didirus/AstralRinth
* Modpack support * Finish feature * Tauri errors fix (#61) * async impl * working * fmt and redundancy * moved ? to if let Ok block * Finish modpacks support * remove generated file * fix compile err * fix lint * Fix code review comments + forge support --------- Co-authored-by: Wyatt Verchere <wverchere@gmail.com>
18 lines
555 B
Rust
18 lines
555 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) -> Result<PathBuf> {
|
|
let res = pack::install_pack_from_version_id(version_id).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)
|
|
}
|