update migration

This commit is contained in:
Nikolay Kim 2019-12-22 17:16:07 +04:00
parent 6a0cd2dced
commit 1c75e6876b
3 changed files with 6 additions and 6 deletions

View file

@ -53,7 +53,7 @@ async fn index(info: web::Path<(u32, String)>) -> impl Responder {
async fn main() -> std::io::Result<()> {
HttpServer::new(|| App::new().service(index))
.bind("127.0.0.1:8080")?
.start()
.run()
.await
}
```