1
0
mirror of https://github.com/fafhrd91/actix-web synced 2025-08-31 08:57:00 +02:00

Add route scopes #202

This commit is contained in:
Nikolay Kim
2018-04-29 19:35:50 -07:00
parent aa757a5be8
commit 368730f5f1
5 changed files with 53 additions and 10 deletions

View File

@@ -1,8 +1,9 @@
use futures::{Async, Future, Poll};
use std::cell::UnsafeCell;
use std::marker::PhantomData;
use std::rc::Rc;
use futures::{Async, Future, Poll};
use error::Error;
use handler::{AsyncHandler, FromRequest, Handler, Reply, ReplyItem, Responder,
RouteHandler, WrapHandler};