watchexec/src/main.rs

7 lines
134 B
Rust
Raw Normal View History

extern crate watchexec;
use watchexec::{cli, error, run};
2016-09-14 15:30:59 +02:00
fn main() -> error::Result<()> {
run(cli::get_args(), None::<fn(_)>)
}