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
10
11
12
13
//! Controls things that work with [`crate::api::rest::Task`]s.
pub mod add;
pub mod close;
pub mod comment;
pub mod create;
pub mod edit;
mod filter;
pub mod list;
mod priority;
mod state;
pub mod view;

pub use priority::*;