caesura 0.20.0

An all-in-one command line tool to **transcode FLAC** audio files and **upload to gazelle** based indexers/trackers.
Documentation
use caesura::hosting::HostBuilder;
use std::process::ExitCode;

#[tokio::main]
async fn main() -> ExitCode {
    let host = HostBuilder::new().build();
    match host.execute().await {
        Ok(status) => {
            if status {
                ExitCode::SUCCESS
            } else {
                ExitCode::FAILURE
            }
        }
        Err(error) => {
            error.log();
            ExitCode::FAILURE
        }
    }
}