telegram-rs-2 0.1.1

A comprehensive Rust library for building Telegram bots and Mini Apps with optional wallet integration
Documentation
1
2
3
4
5
6
7
8
9
//! Telegram Mini App module (requires "mini-app" feature)
//!
//! This module provides utilities for building Telegram Mini Apps (web apps).
//! It handles initData validation, WASM bridge interactions, and client-side integrations.

pub mod bridge;
pub mod init;

pub use init::InitData;