telegram_bot_oxidebot

Crates.iotelegram_bot_oxidebot
lib.rstelegram_bot_oxidebot
version0.1.2
sourcesrc
created_at2024-08-20 14:30:58.463426
updated_at2024-09-09 17:04:01.344958
descriptionTelegram Bot for oxidebot framework
homepagehttps://github.com/canxin121/telegram_bot_oxidebot
repositoryhttps://github.com/canxin121/telegram_bot_oxidebot
max_upload_size
id1345316
size138,280
canxin (canxin121)

documentation

README

telegram Bot for oxidebot

Usage

cargo add telegram_bot_oxidebot 

Example

#[tokio::main]
async fn main() {
    tracing_subscriber::fmt::init();
    let manager = oxidebot::OxideBotManager::new()
        .bot(TelegramBot::new("token".to_string(), Default::default()).await)
        .await;
    manager.run_block().await;
}
Commit count: 0

cargo fmt