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::TelegramClient;
9pub use event::TelegramContextData;
10pub use types::{
11 BotCommand, CallbackQuery, Chat, InlineKeyboardButton, InlineKeyboardMarkup, Message,
12 ReplyMarkup, Update, UpdateKind, User,
13};