mirror of
https://github.com/watchexec/watchexec.git
synced 2024-11-10 21:36:43 +01:00
13 lines
219 B
Rust
13 lines
219 B
Rust
//! Error types for critical, runtime, and specialised errors.
|
|
|
|
#[doc(inline)]
|
|
pub use critical::*;
|
|
#[doc(inline)]
|
|
pub use runtime::*;
|
|
#[doc(inline)]
|
|
pub use specialised::*;
|
|
|
|
mod critical;
|
|
mod runtime;
|
|
mod specialised;
|