yozefu-tui 0.0.2

A TUI for browsing kafka topics
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This library contains all the glue code with [Ratatui](https://github.com/ratatui/ratatui).

mod action;
mod component;
pub mod error;
mod records_buffer;
mod schema_detail;
pub mod theme;
mod tui;
pub use action::Action;
pub use action::Notification;

pub use component::State;
pub use component::Ui;
pub use error::TuiError;
pub use theme::Theme;