1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
//! doist is a command line tool to manage tasks on Todoist.
//!
//! This command line tool allows you to interact with the Todoist API using an ergonomic interface
//! to quickly manage tasks from the terminal.
//!
//! # Examples
//! ```bash
//! $ doist list
//! $ doist add "buy some flowers" -d tomorrow
//! ```
#![warn(missing_docs)]
pub mod api;
mod command;
mod comments;
pub mod config;
mod interactive;
mod labels;
mod projects;
mod sections;
mod tasks;

#[doc(hidden)]
pub use command::Arguments;