1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
extern crate log;

pub mod commands;
pub mod db;
pub mod decode;
pub mod git;

use utils::error::Result;

static PROMPT_UNDO: &str = include_str!("../prompts/undo.txt");
static PROMPT_HELPME: &str = include_str!("../prompts/helpme.txt");

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