watchexec/crates/lib/src/action.rs

16 lines
336 B
Rust
Raw Permalink Normal View History

2021-08-20 18:43:55 +02:00
//! Processor responsible for receiving events, filtering them, and scheduling actions in response.
2021-09-18 07:20:05 +02:00
#[doc(inline)]
pub use handler::Handler as ActionHandler;
2021-09-18 07:20:05 +02:00
#[doc(inline)]
pub use quit::QuitManner;
#[doc(inline)]
pub use r#return::ActionReturn;
2022-01-28 14:37:01 +01:00
#[doc(inline)]
pub use worker::worker;
mod handler;
mod quit;
mod r#return;
2022-01-28 14:37:01 +01:00
mod worker;