1
0
mirror of https://github.com/actix/examples synced 2025-01-22 22:05:57 +01:00

[EZ] Update READMEs with current paths (#432)

This commit is contained in:
John Watson 2021-06-06 10:50:30 -07:00 committed by GitHub
parent dc99a3b3b6
commit e68c836311
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View File

@ -7,7 +7,7 @@ Websocket server for autobahn suite testing.
### server ### server
```bash ```bash
cd examples/websocket-autobahn cd websockets/autobahn
cargo run --bin websocket-autobahn-server cargo run --bin websocket-autobahn-server
``` ```

View File

@ -7,7 +7,7 @@ Simple echo websocket server.
### server ### server
```bash ```bash
cd examples/websocket cd websockets/websocket
cargo run --bin websocket-server cargo run --bin websocket-server
# Started http server: 127.0.0.1:8080 # Started http server: 127.0.0.1:8080
``` ```
@ -19,7 +19,7 @@ cargo run --bin websocket-server
### rust client ### rust client
```bash ```bash
cd examples/websocket cd websockets/websocket
cargo run --bin websocket-client cargo run --bin websocket-client
``` ```