Skip to main content

yozefu_tui/
lib.rs

1//! This library contains all the glue code with [Ratatui](https://github.com/ratatui/ratatui).
2
3mod action;
4mod component;
5pub mod error;
6mod highlighter;
7mod partition_lag;
8mod records_buffer;
9mod schema_detail;
10pub mod theme;
11mod tui;
12
13pub(crate) use action::Action;
14pub use action::Notification;
15
16pub use component::State;
17pub use component::Ui;
18pub use error::TuiError;
19pub use theme::Theme;
20
21pub use highlighter::HIGHLIGHTER_THEMES;