botkit_telegram/lib.rs
1pub mod action;
2mod bot;
3mod client;
4mod event;
5pub mod types;
6
7pub use bot::{TelegramBot, TelegramWebhook};
8pub use client::{MediaKind, NewSticker, TelegramClient};
9pub use event::TelegramContextData;
10pub use types::{
11 BotCommand, CallbackQuery, Chat, File, InlineKeyboardButton, InlineKeyboardMarkup, MediaFile,
12 Message, MessageReactionUpdated, PhotoSize, ReactionType, ReplyMarkup, Sticker, StickerSet,
13 Update, UpdateKind, User,
14};