mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-04-10 03:03:37 +02:00
Filesystem Sync (#142)
This commit is contained in:
15
src-tauri/yaak-sync/src/lib.rs
Normal file
15
src-tauri/yaak-sync/src/lib.rs
Normal file
@@ -0,0 +1,15 @@
|
||||
use crate::commands::{apply, calculate};
|
||||
use tauri::{
|
||||
generate_handler,
|
||||
plugin::{Builder, TauriPlugin},
|
||||
Runtime,
|
||||
};
|
||||
|
||||
mod commands;
|
||||
mod error;
|
||||
mod models;
|
||||
mod sync;
|
||||
|
||||
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
||||
Builder::new("yaak-sync").invoke_handler(generate_handler![calculate, apply]).build()
|
||||
}
|
||||
Reference in New Issue
Block a user