Fix teloxide::dispatching layout

This commit is contained in:
Temirkhan Myrzamadi 2020-01-01 03:26:30 +06:00
parent 685d85b62d
commit e4e46d8df1
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;