mirror of
https://github.com/mountain-loop/yaak.git
synced 2026-02-23 02:54:58 +01:00
20 lines
292 B
Rust
20 lines
292 B
Rust
const COMMANDS: &[&str] = &[
|
|
"add",
|
|
"branch",
|
|
"checkout",
|
|
"commit",
|
|
"delete_branch",
|
|
"fetch_all",
|
|
"initialize",
|
|
"log",
|
|
"merge_branch",
|
|
"pull",
|
|
"push",
|
|
"status",
|
|
"unstage",
|
|
];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS).build();
|
|
}
|