turingram 0.0.2

Small runtime-agnostic Telegram Bot API framework for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
#![doc = include_str!("../README.md")]

/// Client and executor abstractions used to call the Telegram Bot API.
pub mod client;
/// Typed Telegram Bot API method payloads.
pub mod methods;
/// Telegram Bot API request helpers, responses, and incoming update models.
pub mod types;

pub use crate::{client::Client, methods::Method, types::Update};