botkit-telegram 0.2.0

Telegram implementation for botkit
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod action;
mod bot;
mod client;
mod event;
pub mod types;

pub use bot::{TelegramBot, TelegramWebhook};
pub use client::{MediaKind, NewSticker, TelegramClient};
pub use event::TelegramContextData;
pub use types::{
    BotCommand, CallbackQuery, Chat, File, InlineKeyboardButton, InlineKeyboardMarkup, MediaFile,
    Message, MessageReactionUpdated, PhotoSize, ReactionType, ReplyMarkup, Sticker, StickerSet,
    Update, UpdateKind, User,
};