Simpl-Resultat/src-tauri/src/commands/mod.rs
Le-King-Fu 87e8f26754 feat: add data export/import with optional AES-256-GCM encryption (#3)
Add export (JSON/CSV) and import (full replace) to the Settings page.
Export supports 3 modes (transactions+categories, transactions only,
categories only) with optional password encryption using Argon2id key
derivation. Import detects encrypted .sref files, prompts for password,
and shows a destructive confirmation modal before replacing data.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-15 11:40:28 +00:00

5 lines
113 B
Rust

pub mod fs_commands;
pub mod export_import_commands;
pub use fs_commands::*;
pub use export_import_commands::*;