13 lines
268 B
Rust
13 lines
268 B
Rust
//! NDJSON/JSON/TSV file-based backend.
|
|
//!
|
|
//! Ports the body of the former `FileBasedArchivist`. Uses the existing
|
|
//! `crate::storage` free-function primitives unchanged.
|
|
|
|
mod backend;
|
|
mod connectors;
|
|
mod dag;
|
|
mod mapping;
|
|
mod meta;
|
|
|
|
pub use backend::JsonlBackend;
|