balius_runtime/drivers/mod.rs
1//! Control-flow components on top of the Runtime.
2//!
3//! Drivers are responsible for implementing the control-flows that
4//! handle external interactions (e.g. handling requests, syncing from the
5//! blockchain, etc) and funnels them into the Runtime.
6//!
7//! Each of these drivers has a way to trigger a forever-loop that should be
8//! spawn as an independent tokio task running on the background.
9
10pub mod chainsync;
11pub mod jsonrpc;