things3 0.0.5

Intereacting with Things 3
Documentation
1
2
3
4
5
6
7
8
9
10
use things3::list::List;

fn main() {
    let todos = List::Today
        .fetch_todos()
        .expect("Failed to get todos for today");
    for todo in todos {
        println!("{}", todo.name);
    }
}