postit 0.2.3

Task manager on your CLI.
Documentation
1
2
3
4
5
6
7
8
//! Contains the configuration module, which includes the [`Config`] struct and
//! an [`Error`] enum for error handling.

mod configuration;
mod error;

pub use configuration::Config;
pub use error::{Error, Result};