Crates.io | motorx-core |
lib.rs | motorx-core |
version | 0.0.10 |
source | src |
created_at | 2023-01-18 01:07:22.673957 |
updated_at | 2023-01-18 05:54:26.180454 |
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 | 53,748 |
use motorx_core::{Server, Config};
#[tokio::main]
async fn main() {
let server = Server::new(Config { /* your config here */ });
server.await.unwrap();
}