1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
//! Telegram bot prelude.
//!
//! This module re-exports request builder traits from telegram-bot-raw.

pub use telegram_bot_fork_raw::CanAnswerCallbackQuery;
pub use telegram_bot_fork_raw::CanLeaveChat;
pub use telegram_bot_fork_raw::CanSendChatAction;
pub use telegram_bot_fork_raw::{CanDeleteMessage, CanForwardMessage};
pub use telegram_bot_fork_raw::{CanEditMessageCaption, CanEditMessageReplyMarkup, CanEditMessageText};
pub use telegram_bot_fork_raw::{CanEditMessageLiveLocation, CanStopMessageLiveLocation};
pub use telegram_bot_fork_raw::{CanGetChat, CanGetChatAdministrators, CanGetChatMembersCount};
pub use telegram_bot_fork_raw::{CanGetChatMemberForChat, CanGetChatMemberForUser};
pub use telegram_bot_fork_raw::{CanGetFile, CanGetUserProfilePhotos};
pub use telegram_bot_fork_raw::{CanKickChatMemberForChat, CanKickChatMemberForUser};
pub use telegram_bot_fork_raw::{CanPinMessage, CanUnpinMessage};
pub use telegram_bot_fork_raw::{CanReplySendAudio, CanSendAudio};
pub use telegram_bot_fork_raw::{CanReplySendContact, CanSendContact};
pub use telegram_bot_fork_raw::{CanReplySendLocation, CanSendLocation};
pub use telegram_bot_fork_raw::{CanReplySendMessage, CanSendMessage};
pub use telegram_bot_fork_raw::{CanReplySendVenue, CanSendVenue};
pub use telegram_bot_fork_raw::{CanUnbanChatMemberForChat, CanUnbanChatMemberForUser};
pub use telegram_bot_fork_raw::{ToReplyRequest, ToRequest};