mirror of
https://github.com/hempyhemp/hh-auto-reply.git
synced 2026-06-08 18:04:57 +00:00
9 lines
199 B
TypeScript
9 lines
199 B
TypeScript
import process from 'node:process'
|
|
|
|
import TelegramBot from 'node-telegram-bot-api'
|
|
|
|
const token = process.env.TG_BOT_TOKEN!
|
|
const bot = new TelegramBot(token, { polling: true })
|
|
|
|
export default bot
|