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