jobber 0.10.5

Command line tool for tracking work time
Documentation
//! Library bundle `jobberdb`.
//!
//! See module for the application which uses it.

pub mod check;
pub mod command;
pub mod configuration;
pub mod context;
pub mod date_time;
pub mod duration;
pub mod error;
pub mod export;
pub mod format;
pub mod job;
pub mod job_list;
pub mod jobs;
pub mod operation;
pub mod partial_date_time;
pub mod positions;
pub mod range;
pub mod reports;
pub mod tag_set;
pub mod tags;

/// What *jobber* needs.
pub mod prelude {
    pub use super::{
        check::*, command::*, configuration::*, context::*, date_time::*, duration::*, error::*,
        export::*, format, job::*, job_list::*, jobs::*, operation::*, partial_date_time::*,
        positions::*, range::*, reports::*, tag_set::*, tags,
    };
}