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