//! Provides Tower layers focues on wrapping services with asynchronous worker
//! tasks that may also make requests to the wrapped service.
/// Layer that spawns a worker task that periodically sends a request to the
/// service at a given interval and then passes through the wrapped service..
pub use PeriodicLayer;
/// Layer that spawns a provided worker task using a closure that accepts a
/// clone of the service and then passes through the wrapped service.
pub use WorkerLayer;