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

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

pub use component::{DEFAULT_STYLE, FormattedText};