fatui 0.1.0

a silly little framework for terminal user interfaces
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! outputs to [i/o][crate::backend].
//!
//! the job of actually plugging into inputs or outputs
//! is handled by [`Backend`][crate::Backend]s;
//! this is just the common data types,
//! like a grid of styled characters.

mod chr;
pub use chr::StyledChar;

#[cfg(test)]
mod test;