mirror of
https://github.com/teloxide/teloxide.git
synced 2024-12-22 22:46:39 +01:00
Create dispatching::private
This commit is contained in:
parent
7eac9961be
commit
c8a1bdce25
5 changed files with 7 additions and 4 deletions
|
@ -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::*;
|
||||
|
|
5
src/dispatching/private/mod.rs
Normal file
5
src/dispatching/private/mod.rs
Normal file
|
@ -0,0 +1,5 @@
|
|||
mod dispatcher;
|
||||
mod storage;
|
||||
|
||||
pub use dispatcher::*;
|
||||
pub use storage::*;
|
|
@ -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)]
|
Loading…
Reference in a new issue