forked from didirus/AstralRinth
* initial migration * barebones profiles * Finish profiles * Add back file watcher * UI support progress * Finish most of cache * Fix options page * Fix forge, finish modrinth auth * Accounts, process cache * Run SQLX prepare * Finish * Run lint + actions * Fix version to be compat with windows * fix lint * actually fix lint * actually fix lint again
25 lines
646 B
Rust
25 lines
646 B
Rust
use crate::api::Result;
|
|
use theseus::prelude::*;
|
|
|
|
pub fn init<R: tauri::Runtime>() -> tauri::plugin::TauriPlugin<R> {
|
|
tauri::plugin::Builder::new("settings")
|
|
.invoke_handler(tauri::generate_handler![settings_get, settings_set])
|
|
.build()
|
|
}
|
|
|
|
// Get full settings
|
|
// invoke('plugin:settings|settings_get')
|
|
#[tauri::command]
|
|
pub async fn settings_get() -> Result<Settings> {
|
|
let res = settings::get().await?;
|
|
Ok(res)
|
|
}
|
|
|
|
// Set full settings
|
|
// invoke('plugin:settings|settings_set', settings)
|
|
#[tauri::command]
|
|
pub async fn settings_set(settings: Settings) -> Result<()> {
|
|
settings::set(settings).await?;
|
|
Ok(())
|
|
}
|