#![cfg_attr(not(debug_assertions), deny(clippy::disallowed_methods))]
#![cfg_attr(debug_assertions, warn(clippy::disallowed_methods))]
#![cfg_attr(not(debug_assertions), deny(warnings))]
#![allow(clippy::tabs_in_doc_comments)]
pub mod context;
pub mod coordinator;
pub mod factory;
pub mod handle;
pub mod registry;
pub mod schedule;
pub mod subsystem;
pub mod task;