doist 0.4.0

doist is an unofficial command line app for interacting with the Todoist API
Documentation
//! Contains low-level structs as used by the Todoist REST API and provides some tools to work
//! with them.
//!
//! This maps parts of the [API Documentation](https://developer.todoist.com/api/v1) to
//! code that can be consumed by clients, including the actual network calls and
//! serialization/deserialization..
//!
//! To get started, take a look at [`Gateway`].
mod comment;
mod display;
mod gateway;
mod label;
mod project;
mod section;
mod task;

pub use comment::*;
pub use display::*;
pub use gateway::*;
pub use label::*;
pub use project::*;
pub use section::*;
pub use task::*;