1
 2
 3
 4
 5
 6
 7
 8
 9
10
//! TODO: document this

pub mod flex;
pub mod text;

/// TODO: document this
pub mod prelude {
    pub use crate::flex::Flex;
    pub use crate::text::Text;
}