botkit-telegram 0.1.0

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

pub use bot::{TelegramBot, TelegramWebhook};
pub use client::TelegramClient;
pub use event::TelegramContextData;
pub use types::{
    BotCommand, CallbackQuery, Chat, InlineKeyboardButton, InlineKeyboardMarkup, Message,
    ReplyMarkup, Update, UpdateKind, User,
};