telers 1.0.0-beta.2

An asynchronous framework for Telegram Bot API written in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! This module contains submodules with components for sending requests to the Telegram Bot API, its conguration
//! and the main entry point for the library - the [`Bot`] struct.
//!
//! Components are:
//! - [`bot`] module with the main entry point for the library
//! - [`session`] module with components for sending requests
//! - [`telegram`] module with configuration of the Telegram Bot API
//!
//! Check each submodule for more information.

pub mod bot;
pub mod session;
pub mod telegram;

pub use bot::Bot;
pub use session::{Reqwest, Session};