Skip to main content

journal_engine/logs/
mod.rs

1//! Log entry formatting and display.
2//!
3//! This module provides generic types for converting log entries
4//! into formatted tables.
5
6pub mod query;
7pub mod table;
8
9pub use query::{LogEntryData, LogQuery};
10pub use table::{CellValue, ColumnInfo, Table, entry_data_to_table};