hitomi 0.8.1

A CLI application that builds and updates playlists on a Plex server using json-based profiles.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
use anyhow::Result;
use clap::Parser;

use hitomi::{cli, logger};

#[tokio::main]
async fn main() -> Result<()> {
    logger::initialize_logger()?;

    let cli = cli::Cli::parse();
    cli::run_cli_command(cli).await?;

    Ok(())
}