| Crates.io | motorx-core |
| lib.rs | motorx-core |
| version | 0.0.18 |
| created_at | 2023-01-18 01:07:22.673957+00 |
| updated_at | 2025-02-09 19:08:33.709281+00 |
| description | Build your own motorx binary. |
| homepage | https://github.com/tsar-boomba/motorx |
| repository | https://github.com/tsar-boomba/motorx |
| max_upload_size | |
| id | 761430 |
| size | 86,704 |
use motorx_core::{Server, Config};
#[tokio::main]
async fn main() {
let server = Server::new(Config { /* your config here */ });
server.run().await.unwrap();
}