telegraf / micro-bot

:robot: Zero-configuration Telegram bot runner
MIT License
182 stars 29 forks source link

Access Telegram API #16

Open realies opened 5 years ago

realies commented 5 years ago

Is it possible to access Telegram API such as bot.telegram.sendMessage via micro-bot?

AxelRUS commented 5 years ago

@realies

You can define method like this and use bot.telegram.sendMessage

bot.init = async (mBot) => {
    bot.telegram = mBot.telegram;
}
realies commented 5 years ago

Can this be added to the repo so it is available by default?