postit/core/
mod.rs

1
2
3
4
5
6
7
8
9
10
//! This is where all the task related management happens.

pub mod args;
mod config;
pub mod error;
mod postit;
pub mod models;

pub use postit::Postit;
pub use config::Config;