1
0
mirror of https://github.com/actix/actix-extras.git synced 2025-06-25 18:09:22 +02:00

move server protocol impl to submodule

This commit is contained in:
Nikolay Kim
2018-01-11 18:35:05 -08:00
parent fa93701bee
commit 8a058efb4e
15 changed files with 269 additions and 236 deletions

View File

@ -67,7 +67,7 @@ fn main() {
let addr = rx.recv().unwrap();
let _ = addr.call_fut(
dev::StopServer{graceful:true}).wait(); // <- Send `StopServer` message to server.
server::StopServer{graceful:true}).wait(); // <- Send `StopServer` message to server.
}
```