ingest_api/lib.rs
1mod storage;
2mod verify;
3
4pub use storage::{
5 AuditLedger, InMemoryAuditLedger, InMemoryOperationLog, InMemoryRawDataStore, IngestDecision,
6 IngestService, IngestServiceError, OperationLogEntry, OperationLogStore, RawDataStore,
7};
8#[cfg(feature = "s3")]
9pub use storage::{S3Backend, S3CompatibleRawDataStore, S3ObjectStoreConfig, S3StoreError};
10pub use verify::{IngestError, IngestState};