doist 0.4.0

doist is an unofficial command line app for interacting with the Todoist API
Documentation
1
2
3
4
5
6
7
8
9
use crate::api::rest::{Comment, FullComment};

pub fn list(comments: &[Comment]) {
    println!("Comments:");
    for comment in comments {
        println!("-----");
        println!("{}", FullComment(comment));
    }
}