watchexec/src/main.rs

8 lines
121 B
Rust

extern crate watchexec;
use watchexec::{cli, error, run};
fn main() -> error::Result<()> {
run(cli::get_args()?)
}