Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 457 Bytes

README.md

File metadata and controls

18 lines (13 loc) · 457 Bytes

Dotbot.Telegram

An adapter for the Dotbot framework for Telegram.

Powered by Telegram.Bot by Robin Muller.

Getting Started

To add the Telegram adapter to your bot, just update your startup code:

// Build the robot.
var robot = new RobotBuilder()
    // ...
    .UseTelegram("MY_TELEGRAM_TOKEN")
    // ...
    .Build();