Files
notedeck/src/storage/mod.rs
kernelkind 72c44bdf2d use new serialization
Signed-off-by: kernelkind <kernelkind@gmail.com>
2024-12-10 15:03:01 -05:00

14 lines
387 B
Rust

mod decks;
mod file_key_storage;
mod file_storage;
pub use decks::{load_decks_cache, save_decks_cache};
pub use file_key_storage::FileKeyStorage;
pub use file_storage::{delete_file, write_file, DataPath, DataPathType, Directory};
#[cfg(target_os = "macos")]
mod security_framework_key_storage;
pub mod key_storage_impl;
pub use key_storage_impl::{KeyStorageResponse, KeyStorageType};