rust_voice_chat_room/server/src/main.rs

9 lines
187 B
Rust
Raw Normal View History

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