watchexec/src/main.rs

8 lines
122 B
Rust
Raw Normal View History

extern crate watchexec;
2019-01-26 03:15:27 +01:00
use watchexec::{cli, error, run};
2016-09-14 15:30:59 +02:00
fn main() -> error::Result<()> {
run(&cli::get_args()?)
}