postit 0.2.3

Task manager on your CLI.
Documentation
1
2
3
4
5
6
7
//! Representations of objects that store specific data related to tasks and their information.

mod task;
mod todo;

pub use task::{Priority, Task};
pub use todo::Todo;