mirror of
https://github.com/moeru-ai/airi.git
synced 2026-08-14 00:48:06 +00:00
11 lines
169 B
Rust
11 lines
169 B
Rust
const COMMANDS: &[&str] = &[
|
|
"connect_server",
|
|
"disconnect_server",
|
|
"list_tools",
|
|
"call_tool",
|
|
];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS).build();
|
|
}
|