```rs use motorx_core::{Server, Config};
async fn main() { let server = Server::new(Config { /* your config here */ }); server.await.unwrap(); } ```