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
28
29
30
31
32
33
// `error_chain!` can recurse deeply
#![recursion_limit = "1024"]

// External dependencies
extern crate app_dirs;
extern crate bloodhound;
extern crate fragment;
extern crate git2;
extern crate luthor;
extern crate pad;
extern crate regex;
extern crate scribe;
extern crate syntect;
extern crate unicode_segmentation;
extern crate clipboard;
extern crate yaml_rust as yaml;
extern crate smallvec;

#[macro_use]
extern crate error_chain;

// Private modules
mod commands;
mod errors;
mod helpers;
mod input;
mod models;
mod presenters;
mod view;

// External application API
pub use models::Application;
pub use errors::Error;