Added config and current commands, Close button for inline menus, pass to all __init__s

This commit is contained in:
BarsTiger
2023-03-08 16:10:22 +02:00
parent ebdd27ece8
commit b83e649349
19 changed files with 119 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ from rich import print
def register_handlers():
from bot.handlers import (
initialize, admin, help_command, txt2img, image_info
initialize, admin, help_command, txt2img, image_info, config
)
initialize.register()
@@ -11,5 +11,6 @@ def register_handlers():
help_command.register()
txt2img.register()
image_info.register()
config.register()
print('[gray]All handlers registered[/]')