10 lines
277 B
Python
10 lines
277 B
Python
from telebot import types
|
|
from bot.handlers.start import startMessage
|
|
|
|
|
|
def register(bot):
|
|
@bot.message_handler(func=lambda message: True)
|
|
def handle_unknown(message):
|
|
bot.reply_to(
|
|
message, f"You said: {message.text}. send /start to get started.")
|