Create dispatching::private

This commit is contained in:
Temirkhan Myrzamadi 2020-01-08 04:33:22 +06:00
parent 7eac9961be
commit c8a1bdce25
5 changed files with 7 additions and 4 deletions

View file

@ -1,11 +1,9 @@
//! Update dispatching.
mod dispatcher;
pub mod filters;
mod handler;
pub mod storage;
pub mod private;
pub mod update_listeners;
pub use dispatcher::*;
pub use filters::Filter;
pub use handler::*;

View file

@ -0,0 +1,5 @@
mod dispatcher;
mod storage;
pub use dispatcher::*;
pub use storage::*;

View file

@ -1,6 +1,6 @@
use async_trait::async_trait;
use crate::dispatching::storage::Storage;
use super::Storage;
use std::collections::HashMap;
#[derive(Clone, Debug, Eq, PartialEq, Default)]