1 2 3 4 5 6 7 8 9 10 11 12 13
use std::process::ExitCode; #[tokio::main] async fn main() -> ExitCode { tracing_subscriber::fmt::init(); if let Err(e) = mural_client::run().await { eprintln!("error: {}", e); return ExitCode::from(1); } return ExitCode::SUCCESS; }