11 lines
244 B
JavaScript
11 lines
244 B
JavaScript
import Telegraf from 'telegraf'
|
|
import express from 'express'
|
|
|
|
const web = express()
|
|
const bot = new Telegraf('643297173:AAGuqfZx3GhiiARwvY7AtWTTFw1T-2FiwCM')
|
|
|
|
web.get('/', (req, res) => {
|
|
bot.telegram.sendMessage('test')
|
|
})
|
|
web.listen(3000)
|