//! Terminal rendering for all entity lists.
//!
//! Each submodule owns the table layout for its entity type:
//!
//! - [`task_table`] — `todo list`, `todo search`
//! - [`note_table`] — `todo note list`
//! - [`project_table`] — `todo project list`
//! - [`resource_table`] — `todo resource list`
//! - [`formatting`] — shared helpers (truncate, due text, colors)
//! - [`next_table`]
//! - [`calendar`]
pub use display_next;
pub use display_notes;
pub use display_projects;
pub use display_resources;
pub use display_lists;