ite 0.5.3

Command line ID3 tag editor
1
2
3
4
5
6
7
8
9
10
mod run;
use run::run;
use std::process::exit;
#[tokio::main]
async fn main() {
	if let Err(err) = run().await {
		eprintln!("\x1b[1;31mfatal error\x1b[39m:\x1b[22m {err}");
		exit(1);
	}
}