summaryrefslogtreecommitdiff
path: root/src/main.rs
blob: ad4bd25a470cc1096d2bfacb6d9d9141ec720ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
use render::App;
use sqlx::{self, Connection, SqliteConnection};

use std::error::Error;

mod tui;
mod render;
mod model;


#[tokio::main]
async fn main() -> Result<(), Box<dyn Error>> {
    let mut conn = SqliteConnection::connect("sqlite::memory:").await?;
    let task = sqlx::query_as::<_, model::Task>("SELECT 'hej' as test")
        .fetch_one(&mut conn).await?;

    println!("{}", task);


    let mut terminal = tui::init()?;
    let res = App::default().run(&mut terminal);
    tui::restore()?;

    res?;
    Ok(())
}