8 lines
121 B
Python
8 lines
121 B
Python
from telebot import TeleBot
|
|
|
|
from . import basic
|
|
|
|
|
|
def register_handlers(bot: TeleBot):
|
|
basic.register_handlers(bot)
|