zerest 0.1.0

In the process of being developed by Rust as of January 2025...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
mod app;
mod widget;

use crate::app::App;
use std::io;

fn main() -> io::Result<()> {
	let mut terminal = ratatui::init();
	let app_result = App::default().run(&mut terminal);
	ratatui::restore();
	app_result
}

#[cfg(test)] mod tests;