8 lines
187 B
Rust
8 lines
187 B
Rust
use server::{ServerConfig, stream::start};
|
|
|
|
#[tokio::main]
|
|
async fn main() {
|
|
println!("Hello, world!");
|
|
let server_config = ServerConfig::new();
|
|
start(server_config).await;
|
|
}
|