Skip to content

Latest commit

 

History

History
18 lines (16 loc) · 346 Bytes

Readme.md

File metadata and controls

18 lines (16 loc) · 346 Bytes

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