paintty 0.1.0

Painting app that runs in your terminal
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use std::io::{self};

use app::App;

mod app;
mod canvas;
mod dialog;

fn main() -> io::Result<()> {
  let mut app = App::new()?;

  app.run()?;

  Ok(())
}