1
2
3
4
5
6
7
8
9
10
11
12
pub mod comment;
pub mod datetime;
pub mod spinner;
pub mod table;
pub mod ui;

pub mod prelude {
    pub use super::table::builder::CodTableBuilder;
    pub use term_table::row::Row;
    pub use term_table::table_cell::Alignment;
    pub use term_table::table_cell::TableCell;
}