summaryrefslogtreecommitdiffstats
path: root/src/main.rs
blob: f1018d9f8050845f0a86265ed3b5f18f1c68f3d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
extern crate directories;
extern crate failure;
extern crate rusqlite;

mod error;
mod paths;
mod db;

fn main() {
    let db = db::DB::new(&paths::dbpath())
        .expect("failed to create db");
}