word_cloud_bot/main.py
机器人总动员 722ecfef28 None
2021-05-05 15:35:04 +08:00

13 lines
317 B
Python

from telegram.ext import Updater
from config import TOKEN
from func import start_handler, chat_content_handler
updater = Updater(token=TOKEN, use_context=True)
dispatcher = updater.dispatcher
dispatcher.add_handler(start_handler)
dispatcher.add_handler(chat_content_handler)
updater.start_polling()
updater.idle()