Reorganized imports in reactor.rs.

This commit is contained in:
Aaron Weiss 2018-01-08 23:54:06 -05:00
parent 47bbf38497
commit fc4b4cad7f
No known key found for this signature in database
GPG key ID: 047D32DF25DC22EF

View file

@ -1,14 +1,14 @@
//! A system for creating and managing multiple connections to IRC servers.
use futures::{Future, Stream};
use futures::future;
use tokio_core::reactor::Core;
use client::data::Config;
use client::server::{IrcServer, IrcServerFuture, Server};
use error;
use proto::Message;
use futures::{Future, Stream};
use futures::future;
use tokio_core::reactor::Core;
pub struct IrcReactor {
inner: Core,
handlers: Vec<Box<Future<Item = (), Error = error::Error>>>,