mirror of
https://github.com/ntex-rs/ntex.git
synced 2025-04-05 13:57:39 +03:00
refactor server bind and start process
This commit is contained in:
parent
4b421b44a2
commit
27d92f3a23
10 changed files with 139 additions and 103 deletions
|
@ -93,7 +93,8 @@ fn main() {
|
|||
.header("LOCATION", "/index.html")
|
||||
.body(Body::Empty)
|
||||
})))
|
||||
.serve::<_, ()>("127.0.0.1:8080").unwrap();
|
||||
.bind("127.0.0.1:8080").unwrap()
|
||||
.start().unwrap();
|
||||
|
||||
println!("Started http server: 127.0.0.1:8080");
|
||||
let _ = sys.run();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue