1 2 3 4 5 6 7 8 9 10 11 12
//! Background tasks module. //! //! This module provides Celery-style background task execution. //! //! # Examples //! //! ```rust,no_run //! use reinhardt::tasks::{Task, TaskQueue}; //! ``` #[cfg(feature = "tasks")] pub use reinhardt_tasks::*;