api-client/packages/hoppscotch-desktop/plugin-workspace/tauri-plugin-appload/build.rs
Shreyas f234e66078
feat(desktop): portable phase-2 app loader infra (#5341)
This implements backend path management, backup system, cross-platform utilities, and refactors the `appload` plugin arch to support portable mode deployment.

The changes are mainly establishing foundational infra maintaining current frontend behavior until phase-3+ integration.
2025-08-26 20:48:31 +05:30

8 lines
209 B
Rust

const COMMANDS: &[&str] = &["load", "download", "clear", "close", "remove"];
fn main() {
tauri_plugin::Builder::new(COMMANDS)
.android_path("android")
.ios_path("ios")
.build();
}