From bb02d846613ad224d7ff244afeff3d2479d2e837 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fe=CC=81lix=20Saparelli?= Date: Mon, 28 Oct 2019 18:56:06 +1300 Subject: [PATCH] Re-export useful things --- src/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/lib.rs b/src/lib.rs index d236cba..096f07e 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -40,4 +40,5 @@ pub mod run; mod signal; mod watcher; -pub use run::run; +pub use cli::{Args, ArgsBuilder}; +pub use run::{run, watch, Handler};