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. //! Update dispatching.
mod dispatcher;
pub mod filters; pub mod filters;
mod handler; mod handler;
pub mod storage; pub mod private;
pub mod update_listeners; pub mod update_listeners;
pub use dispatcher::*;
pub use filters::Filter; pub use filters::Filter;
pub use handler::*; 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 async_trait::async_trait;
use crate::dispatching::storage::Storage; use super::Storage;
use std::collections::HashMap; use std::collections::HashMap;
#[derive(Clone, Debug, Eq, PartialEq, Default)] #[derive(Clone, Debug, Eq, PartialEq, Default)]