cpm_rs/lib.rs
1#![doc = include_str!("../README.md")]
2
3#[macro_use]
4extern crate log;
5
6/// Module for CustomTask type.
7pub mod customtask;
8/// Module for Path type.
9pub mod path;
10/// Module for Scheduler type.
11pub mod scheduler;
12
13/// Input file parser.
14pub mod input_parser;
15
16mod tests;
17
18pub use crate::customtask::CustomTask;
19pub use crate::path::Path;
20pub use crate::scheduler::Scheduler;
21