Update toss and crossterm event polling

This commit is contained in:
Joscha 2022-06-08 19:00:27 +02:00
parent 00c905eff5
commit 84d554dee9
4 changed files with 52 additions and 20 deletions

View file

@ -8,6 +8,7 @@ use ui::Ui;
#[tokio::main]
async fn main() -> anyhow::Result<()> {
let mut terminal = Terminal::new()?;
terminal.set_measuring(true);
Ui::run(&mut terminal).await?;
Ok(())
}