motorx-core 0.0.5

Build your own motorx binary.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
# motorx-core

## Build custom Motorx binaries

```rs
use motorx_core::{Server, Config};

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