Removed try

Fix for
warning: no calls to throwing functions occur within 'try' expression
try drop.serve()
This commit is contained in:
Suhair Zain 2016-09-11 04:15:54 +05:30 committed by GitHub
parent 5190c4885c
commit 2fa9e69a0e
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ drop.get("/hello") { _ in
return "Hello Vapor"
}
try drop.serve()
drop.serve()
```
## Build and Run