runa_tui/lib.rs
1//! Internal library crate for runa.
2//!
3//! The shipped application is the `rn` binary (`src/main.rs`).
4//!
5//! This library exists to share code between targets (binary, tests) and to keep modules organized.
6//! This API is only used to build the `rn` binary and is not considered a library for external use.
7
8pub mod app;
9pub mod config;
10pub mod core;
11pub mod ui;
12pub mod utils;