telegram_bot_oxidebot 0.1.3

Telegram Bot for oxidebot framework
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![doc = include_str!("../Readme.md")]

pub mod api;
pub mod bot;
pub mod event;
pub mod methods;
pub mod segment;
pub mod telegram;
pub mod utils;

pub use bot::TelegramBot;
pub use methods::{TELEGRAM_BOT_API_METHODS, TELEGRAM_BOT_API_UPDATE_TYPES};
pub use telegram::{
    GetUpdatesConfig, ResponseParameters, TelegramApiError, TelegramClient, BOT_API_VERSION,
};

pub const SERVER: &str = "telegram";