Files
wasm-pong/server/src/main.rs
2022-05-12 22:55:29 +02:00

10 lines
177 B
Rust

use crate::http::HttpServer;
mod http;
mod kafka;
#[tokio::main]
pub async fn main() {
HttpServer::new([127, 0, 0, 1], 4000).run().await.expect("failed to run server");
}