Restore 1.20 compatibility

This commit is contained in:
Félix Saparelli 2018-08-22 07:14:55 +12:00
parent ef0e6df8d4
commit 39a4a52f80
1 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
extern crate watchexec; extern crate watchexec;
use watchexec::{cli::get_args, run}; use watchexec::{cli, run};
fn main() { fn main() {
run(get_args()); run(cli::get_args());
} }