taskwarrior/rust/cli/src/settings/mod.rs
2022-05-08 19:39:02 +00:00

11 lines
379 B
Rust

//! Support for the CLI's configuration file, including default settings.
//!
//! Configuration is stored in a "parsed" format, meaning that any syntax errors will be caught on
//! startup and not just when those values are used.
mod report;
mod settings;
mod util;
pub(crate) use report::{get_usage, Column, Property, Report, Sort, SortBy};
pub(crate) use settings::Settings;