Merge pull request #113 from teloxide/fix_dispatching_layout

Fix teloxide::dispatching layout
This commit is contained in:
Temirkhan Myrzamadi 2020-01-01 03:27:14 +06:00 committed by GitHub
commit 7936558e54
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View file

@ -0,0 +1 @@
pub mod filter;

View file

@ -1,13 +1,13 @@
//! Update dispatching.
mod dispatchers;
pub mod error_handlers;
mod filter_dp;
pub mod filters;
mod handler;
pub mod updaters;
pub use dispatchers::filter::FilterDispatcher;
pub use error_handlers::ErrorHandler;
pub use filter_dp::FilterDispatcher;
pub use filters::Filter;
pub use handler::Handler;
pub use updaters::Updater;