mirror of
https://github.com/spacedriveapp/spacedrive.git
synced 2025-12-11 20:15:30 +01:00
* Initial encryption functions * Storage of encrypted tokens & working login * Add customized `tauri-plugin-cors-fetch` We need to have it in our crates folder due to the dependency of `sd-crypto` for the handling of cookies. * Lint
8 lines
176 B
Rust
8 lines
176 B
Rust
const COMMANDS: &[&str] = &["cors_request", "cancel_cors_request"];
|
|
|
|
fn main() {
|
|
tauri_plugin::Builder::new(COMMANDS)
|
|
.global_api_script_path("./api-iife.js")
|
|
.build();
|
|
}
|