aboutsummaryrefslogtreecommitdiff
path: root/src/main.rs
blob: f30e38e2696c1eec4d631bf863f84fb4d4af85fb (plain)
1
2
3
4
5
6
7
8
9
10
mod app;
mod model;
mod db;

use anyhow::Result;

fn main() -> Result<()> {
    let conn = db::init()?;
    Ok(app::run(conn))
}