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

rename module

This commit is contained in:
Nikolay Kim
2017-12-26 19:59:41 -08:00
parent 743235b8fd
commit 29adc20581
19 changed files with 57 additions and 57 deletions

View File

@ -35,7 +35,7 @@ fn main() {
Application::with_state(State{template: tera})
// enable logger
.middleware(middlewares::Logger::default())
.middleware(middleware::Logger::default())
.resource("/", |r| r.method(Method::GET).f(index))})
.bind("127.0.0.1:8080").unwrap()
.start();