motorx-core 0.0.5

Build your own motorx binary.
Documentation

motorx-core

Build custom Motorx binaries

use motorx_core::{Server, Config};

#[tokio::main]
async fn main() {
    let server = Server::new(Config { /* your config here */ });
    server.await.unwrap();
}