1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![doc= include_str!("../README.md")]

/// Changes the tense of the string returned by the `describe` functions for
/// [InstallStep](install::InstallStep), [RemoveStep](install::RemoveStep) and
/// [Rollback](install::RollbackStep).
pub enum Tense {
    Past,
    Present,
    Future,
}

/// Installation (or removal) configuration, steps and errors.
pub mod install;
/// Scheduling options
pub mod schedule;