#[tokio::main]
async fn main() -> std::process::ExitCode {
let service = normalize_syntax_rules::service::SyntaxRulesService::new();
match service.cli_run_async().await {
Ok(()) => std::process::ExitCode::SUCCESS,
Err(e) => {
eprintln!("{}", e);
std::process::ExitCode::FAILURE
}
}
}