knope 0.22.4

A command line tool for automating common development tasks
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![allow(dead_code)]
#![allow(unused_imports)]
#![allow(clippy::unwrap_used)]
#![allow(clippy::expect_used)]

mod assert;
mod files;
mod git;
mod test_case;

pub use assert::*;
pub use files::*;
pub use git::*;
pub use test_case::*;