15 lines
278 B
Python
15 lines
278 B
Python
from rich import print
|
|
|
|
|
|
def import_handlers():
|
|
from bot.handlers import (
|
|
initialize, admin, help_command, txt2img
|
|
)
|
|
|
|
initialize.register()
|
|
admin.register()
|
|
help_command.register()
|
|
txt2img.register()
|
|
|
|
print('[gray]All handlers imported[/]')
|