//! 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};