rsrun 0.1.4

An easy way to test rust projects
use serde::Deserialize;

mod on_change;
mod startup;
mod watch_dir;

mod errors;

use watch_dir::watch_dir::watch_directory;

fn main() {
    if let Err(e) = watch_directory("./") {
        print!("Errror: {}", e);
    }
}

#[derive(Debug, Deserialize)]
struct RsrunConfig {
    commands: Vec<Vec<String>>,
    ignore: Vec<String>,
}