mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-20 16:44:06 +01:00
10 lines
175 B
Rust
10 lines
175 B
Rust
const COMMANDS: &[&str] = &[
|
|
"enable_encryption",
|
|
"reveal_workspace_key",
|
|
"set_workspace_key",
|
|
];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS).build();
|
|
}
|