mcTelegramBot/main.js
2019-02-06 15:45:21 +03:00

10 lines
227 B
JavaScript

import { Telegraf } from 'telegraf'
import express from 'express'
const web = express()
const bot = new Telegraf('643297173:AAGuqfZx3GhiiARwvY7AtWTTFw1T-2FiwCM')
web.listen(3000, () => {
bot.telegram.sendMessage('test')
})