1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-06-25 22:49:21 +02:00

add optional skeptic

This commit is contained in:
Nikolay Kim
2017-10-26 06:12:23 -07:00
parent 86583049fa
commit 488fb256b4
6 changed files with 31 additions and 20 deletions

View File

@ -110,6 +110,7 @@ fn main() {
.serve::<_, ()>("127.0.0.1:8080").unwrap();
println!("Started http server: 127.0.0.1:8080");
Arbiter::system().send(msgs::SystemExit(0));
let _ = sys.run();
}
```