1
0
Fork 0
mirror of https://github.com/actix/actix-web.git synced 2024-12-21 07:36:43 +00:00

more actix compatibility

This commit is contained in:
Nikolay Kim 2018-02-08 17:13:56 -08:00
parent bc6300be34
commit 73ed1342eb

View file

@ -4,8 +4,9 @@ use std::net::{SocketAddr, Shutdown};
use std::collections::VecDeque;
use std::time::Duration;
use actix::{fut, Actor, ActorFuture, Arbiter, ArbiterService, Context,
use actix::{fut, Actor, ActorFuture, Arbiter, Context,
Handler, Response, ResponseType, Supervised};
use actix::registry::ArbiterService;
use actix::fut::WrapFuture;
use actix::actors::{Connector, ConnectorError, Connect as ResolveConnect};