mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-23 17:18:32 +02:00
Ability to open workspace from directory, WorkspaceMeta, and many sync improvements
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
use crate::commands::{apply, calculate, watch};
|
||||
use crate::commands::{apply, calculate, calculate_fs, watch};
|
||||
use tauri::{
|
||||
generate_handler,
|
||||
plugin::{Builder, TauriPlugin},
|
||||
@@ -12,5 +12,7 @@ mod sync;
|
||||
mod watch;
|
||||
|
||||
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
||||
Builder::new("yaak-sync").invoke_handler(generate_handler![calculate, apply, watch]).build()
|
||||
Builder::new("yaak-sync")
|
||||
.invoke_handler(generate_handler![calculate, calculate_fs, apply, watch])
|
||||
.build()
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user