doist/
lib.rs

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