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
use clap::Parser;
use color_eyre::Result;
use doist::Arguments;

#[tokio::main]
async fn main() -> Result<()> {
    color_eyre::config::HookBuilder::new()
        .panic_section("consider reporting the bug at https://github.com/chaosteil/doist/issues")
        .display_env_section(false)
        .install()?;
    let args = Arguments::parse();
    args.exec().await
}