mirror of
https://github.com/ratatui/ratatui.git
synced 2025-09-29 22:11:34 +00:00
18 lines
214 B
Rust
18 lines
214 B
Rust
use anyhow::Result;
|
|
pub use app::*;
|
|
pub use colors::*;
|
|
pub use root::*;
|
|
pub use term::*;
|
|
pub use theme::*;
|
|
|
|
mod app;
|
|
mod colors;
|
|
mod root;
|
|
mod tabs;
|
|
mod term;
|
|
mod theme;
|
|
|
|
fn main() -> Result<()> {
|
|
App::run()
|
|
}
|