tada 0.1.2

a todo list manager
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! # tada
//!
//! Command-line [todo.txt](https://github.com/todotxt/todo.txt) manager.
//!
//! ## Status
//!
//! Early development, but usable.

pub use item::{Importance, Item, TshirtSize, Urgency};
pub use list::{Line, LineKind, List};

pub mod action;
pub mod item;
pub mod list;
pub mod util;