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