aboutsummaryrefslogtreecommitdiffstats
path: root/src/lib.rs
blob: 76e6fd4a4db4ea41a103b0f4a10ac8689b0b82e8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![warn(rust_2018_idioms)]

pub mod config;
pub mod error;

mod arg;
mod owner_repo;
mod suggestion;


pub use suggestion::for_suggestion;


const VERSION: &'static str = "0.1.0";