axum/examples/websocket
David Pedersen c9c507aece
Add support for websockets (#3)
Basically a copy/paste of whats in warp.

Example usage:

```rust
use tower_web::{prelude::*, ws::{ws, WebSocket}};

let app = route("/ws", ws(handle_socket));

async fn handle_socket(mut socket: WebSocket) {
    while let Some(msg) = socket.recv().await {
        let msg = msg.unwrap();
        socket.send(msg).await.unwrap();
    }
}
```
2021-06-12 20:50:30 +02:00
..
index.html Add support for websockets (#3) 2021-06-12 20:50:30 +02:00
script.js Add support for websockets (#3) 2021-06-12 20:50:30 +02:00