rec/storage/mod.rs
1//! XDG-compliant filesystem persistence.
2//!
3//! Manages session files (NDJSON), alias storage, and directory paths
4//! following the XDG Base Directory specification.
5
6pub mod alias_store;
7pub mod paths;
8pub mod session_store;
9
10pub use alias_store::*;
11pub use paths::*;
12pub use session_store::*;