Files
dirigent/crates/dirigent_archivist/src/backends/jsonl/mod.rs
T
2026-05-08 01:59:04 +02:00

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;