azalea_chat/lib.rs
1#![doc = include_str!("../README.md")]
2
3pub mod base_component;
4mod click_event;
5mod component;
6pub mod hover_event;
7#[cfg(feature = "numbers")]
8pub mod numbers;
9pub mod style;
10pub mod text_component;
11pub mod translatable_component;
12
13pub use component::{DEFAULT_STYLE, FormattedText};