ruz-bot/daemons/bot.py
Administrator b7ef588b34 initial
2022-10-21 13:43:59 +03:00

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)