1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
pub mod cell;
pub mod column;
pub mod row;
pub mod style;
pub mod table;
mod utils;

pub use prelude::*;

pub mod prelude {
    pub use crate::cell::Cell;
    pub use crate::column::Column;
    pub use crate::row::Row;
    pub use crate::style::CellAlignment;
    pub use crate::style::ColumnConstraint;
    pub use crate::style::ContentArrangement;
    pub use crate::table::Table;
}