Very barebones, untrustworthy, barely reviewed auth layer. LGTM. Signed-off-by: Zachery Aaron Shores-Chmielewski <zacheryasc@gmail.com>
18 lines
624 B
Rust
18 lines
624 B
Rust
pub mod types;
|
|
pub mod messages;
|
|
pub mod chunking;
|
|
pub mod storage;
|
|
pub mod actors;
|
|
pub mod auth;
|
|
pub mod cli;
|
|
pub mod metrics;
|
|
#[cfg(feature = "node")]
|
|
pub mod api;
|
|
#[cfg(feature = "node")]
|
|
pub mod ui_html;
|
|
|
|
pub use types::{ChunkRef, ContentHash, DatastoreConfig, ObjectEntry, ObjectManifest};
|
|
pub use messages::{BlobStoreMsg, DatastoreNodeMsg, DatastoreResponse, MetadataMsg, TransferMsg};
|
|
pub use chunking::{chunk_blob, reassemble_blob, verify_integrity, ChunkingError};
|
|
pub use storage::{StorageBackend, FilesystemBackend, InMemoryBackend};
|
|
pub use actors::{BlobStoreActor, DatastoreNode, MetadataActor, TransferActor};
|