mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-03-20 16:43:53 +01:00
14 lines
229 B
Rust
14 lines
229 B
Rust
const COMMANDS: &[&str] = &[
|
|
"delete",
|
|
"duplicate",
|
|
"get_settings",
|
|
"grpc_events",
|
|
"upsert",
|
|
"websocket_events",
|
|
"workspace_models",
|
|
];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS).build();
|
|
}
|