rfind 0.2.0

A simple clone of the `find` command
Documentation
1
2
3
4
5
6
7
8
use rfind::{Config, App};

fn main() {
    let config = Config::new();
    let app = App::new(config);

    app.run();
}