aboutsummaryrefslogtreecommitdiff
path: root/azalea-chat/src/lib.rs
blob: 9995a183c5a60b9115a90b2dc8bfe147f6c6ed32 (plain)
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

pub mod base_component;
mod component;
#[cfg(feature = "numbers")]
pub mod numbers;
pub mod style;
pub mod text_component;
pub mod translatable_component;

pub use component::FormattedText;