todoist-api-rs 0.1.3

Todoist API client library
Documentation
1
2
3
4
5
6
7
8
9
10
//! API data types for the Todoist API.
//!
//! This module provides type-safe models for Todoist data that are shared
//! across both the REST API v2 and Sync API v1.

mod common;
mod task;

pub use common::*;
pub use task::*;