This commit is contained in:
Daniel Abramov 2021-08-17 15:19:57 +02:00
parent b3759a76bc
commit 89697449ff
1 changed files with 1 additions and 1 deletions

View File

@ -5,7 +5,7 @@ Lightweight stream-based WebSocket implementation for [Rust](https://www.rust-la
```rust
use std::net::TcpListener;
use std::thread::spawn;
use tungstenite::server::accept;
use tungstenite::accept;
/// A WebSocket echo server
fn main () {