1 2 3 4 5 6 7 8 9
use motorx_core::Server; #[tokio::main] async fn main() -> Result<(), Box<dyn std::error::Error>> { motorx::setup_tracing(); let config = motorx::config_from_args()?; Server::new(config)?.run().await.map_err(Into::into) }