arkham/src/lib.rs

27 lines
533 B
Rust

mod app;
pub mod components;
mod container;
mod context;
mod geometry;
mod input;
mod plugins;
mod runes;
mod stack;
pub mod symbols;
mod theme;
mod view;
pub mod prelude {
pub use super::{
app::{App, Renderer, Terminal},
container::{Callable, FromContainer, Res, State},
context::ViewContext,
geometry::{Pos, Rect, Size},
input::Keyboard,
runes::{Rune, Runes, ToRuneExt},
theme::Theme,
};
pub use crossterm::event::KeyCode;
pub use crossterm::style::Color;
}