1
2
3
4
5
6
7
8
9
10
extern crate log;

pub mod commands;
pub mod db;

use utils::error::Result;

pub fn start() -> Result<()> {
    Ok(())
}