chrono_slots/
lib.rs

1/// chrono-slots is a library for finding free time slots within a given period,
2/// excluding the times of already scheduled events.
3pub mod finder;
4pub mod periods;
5
6pub use crate::finder::*;
7pub use crate::periods::*;