jobberdb/
lib.rs

1//! Library bundle `jobberdb`.
2//!
3//! See module for the application which uses it.
4
5pub mod check;
6pub mod command;
7pub mod configuration;
8pub mod context;
9pub mod date_time;
10pub mod duration;
11pub mod error;
12pub mod export;
13pub mod format;
14pub mod job;
15pub mod job_list;
16pub mod jobs;
17pub mod operation;
18pub mod partial_date_time;
19pub mod positions;
20pub mod range;
21pub mod reports;
22pub mod tag_set;
23pub mod tags;
24
25/// What *jobber* needs.
26pub mod prelude {
27    pub use super::{
28        check::*, command::*, configuration::*, context::*, date_time::*, duration::*, error::*,
29        export::*, format, job::*, job_list::*, jobs::*, operation::*, partial_date_time::*,
30        positions::*, range::*, reports::*, tag_set::*, tags,
31    };
32}