teloxide/src/prelude.rs

15 lines
331 B
Rust
Raw Normal View History

2020-01-29 19:11:52 +01:00
//! Commonly used items.
pub use crate::{
2020-01-29 23:54:40 +01:00
dispatching::{
2020-02-04 16:38:25 +01:00
dialogue::{
2020-02-10 21:54:08 +01:00
exit, next, DialogueDispatcher, DialogueHandlerCtx, DialogueStage,
GetChatId,
2020-02-02 17:32:27 +01:00
},
Dispatcher, DispatcherHandlerCtx,
2020-01-29 23:54:40 +01:00
},
requests::{Request, ResponseResult},
2020-01-29 19:11:52 +01:00
types::Message,
2020-01-29 23:54:40 +01:00
Bot, RequestError,
2020-01-29 19:11:52 +01:00
};