boxy_cli/
prelude.rs

1//! Convenient imports for working with Boxy CLI.
2//!
3//! This module re-exports all the essential types and functions that are commonly used when
4//! working with the `boxy-cli` library. Import this module to get everything you need at once.
5//!
6//! # Example
7//!
8//! ```
9//! use boxy_cli::prelude::*;
10//!
11//! let mut my_box = Boxy::new(BoxType::Double, "#00ffff");
12//! my_box.add_text_sgmt("Hello, World!", "#ffffff", BoxAlign::Center);
13//! ```
14
15pub use crate::boxer::*;
16pub use crate::constructs::{BoxType, BoxAlign, BoxPad};
17pub use crate::boxy;