mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-22 01:19:13 +01:00
19 lines
374 B
Rust
19 lines
374 B
Rust
use tauri::{
|
|
generate_handler,
|
|
plugin::{Builder, TauriPlugin},
|
|
Runtime,
|
|
};
|
|
|
|
mod commands;
|
|
pub mod error;
|
|
mod license;
|
|
|
|
use crate::commands::{activate, check, deactivate};
|
|
pub use license::*;
|
|
|
|
pub fn init<R: Runtime>() -> TauriPlugin<R> {
|
|
Builder::new("yaak-license")
|
|
.invoke_handler(generate_handler![check, activate, deactivate])
|
|
.build()
|
|
}
|