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') })