mirror of
https://github.com/thilo-behnke/wasm-pong.git
synced 2026-07-12 02:59:48 +00:00
10 lines
177 B
Rust
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");
|
|
}
|