14 lines
237 B
Python
14 lines
237 B
Python
import os
|
|
|
|
import telebot
|
|
from telebot.types import Message
|
|
|
|
|
|
bot = telebot.TeleBot(os.getenv("TELEGRAM_TOKEN"))
|
|
|
|
|
|
@bot.message_handler()
|
|
def do_action(message: Message):
|
|
from helpers.answer import answer
|
|
answer.process(message)
|