watchexec/lib/src/action.rs
2022-01-29 02:39:06 +13:00

15 lines
303 B
Rust

//! Processor responsible for receiving events, filtering them, and scheduling actions in response.
#[doc(inline)]
pub use outcome::Outcome;
#[doc(inline)]
pub use worker::worker;
#[doc(inline)]
pub use workingdata::*;
mod outcome;
mod outcome_worker;
mod process_holder;
mod worker;
mod workingdata;