Files
k-photos/crates/application/src/storage/mod.rs

8 lines
360 B
Rust

pub mod commands;
pub mod queries;
pub use commands::register_volume::{RegisterVolumeCommand, RegisterVolumeHandler};
pub use commands::register_library_path::{RegisterLibraryPathCommand, RegisterLibraryPathHandler};
pub use commands::ingest_asset::{IngestAssetCommand, IngestAssetHandler};
pub use queries::check_quota::{CheckQuotaQuery, CheckQuotaHandler};