1//! Entry point for the `vectron` binary. 2#![deny(missing_docs)] 3#![deny(unsafe_code)] 4 5use daemon::run; 6 7#[tokio::main] 8async fn main() { 9 if let Err(err) = run().await { 10 eprintln!("{err}"); 11 std::process::exit(err.exit_code().unwrap_or(1)); 12 } 13}