communitas-core 0.1.22

Core business logic for Communitas - PQC collaboration with virtual disks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Storage module for Communitas Tauri backend
//!
//! This module provides storage-related functionality including
//! DHT storage, local storage, Reed-Solomon encoding, and metrics.

pub mod dht_storage;
pub mod local_storage;
pub mod metrics;
pub mod reed_solomon_manager;

// Re-export commonly used types
pub use dht_storage::*;
pub use local_storage::*;
pub use reed_solomon_manager::*;