Add Application::Executor associated type

This commit is contained in:
Héctor Ramón Jiménez 2020-01-20 04:47:36 +01:00
parent 35760ac68f
commit 90690702e1
29 changed files with 195 additions and 72 deletions

View file

@ -1,9 +1,5 @@
//! Run commands and subscriptions.
mod executor;
pub use executor::Executor;
use crate::{subscription, Command, Subscription};
//! Run commands and keep track of subscriptions.
use crate::{subscription, Command, Executor, Subscription};
use futures::Sink;
use std::marker::PhantomData;