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

pub mod config;
pub mod error;

pub(crate) mod owner_repo;

mod arg;
mod suggestion;


pub use suggestion::for_suggestion;