distributed_scheduler/lib.rs
1//! This is the main library file for the project.
2
3/// The `cron` module contains the `Cron` struct, which is the main entry point for the library,
4/// providing the ability to add and remove jobs.
5pub mod cron;
6
7/// The `driver` module contains the `Driver` trait and its implementations.
8pub mod driver;
9
10/// The `node_pool` module contains the `NodePool` struct, which is used to manage the nodes in the
11/// cluster.
12pub mod node_pool;