watchexec/crates/lib/src/action.rs

15 lines
303 B
Rust
Raw 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 outcome::Outcome;
#[doc(inline)]
2022-01-28 14:37:01 +01:00
pub use worker::worker;
#[doc(inline)]
2021-09-18 07:20:05 +02:00
pub use workingdata::*;
2021-09-18 07:20:05 +02:00
mod outcome;
2022-01-28 14:37:01 +01:00
mod outcome_worker;
mod process_holder;
mod worker;
2021-09-18 07:20:05 +02:00
mod workingdata;