watchexec/src/main.rs

7 lines
119 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<()> {
2018-09-08 09:43:20 +02:00
run(cli::get_args())
}