1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
mod colour; mod fragment; mod string; pub use colour::*; pub use fragment::*; pub use string::*; use termcolor::*; #[macro_export] macro_rules! ink { ($($tokens:tt)*) => { $crate::InkedFragment::from(format!($($tokens)*)) }; }