Added imginfo and hidden hash command

This commit is contained in:
BarsTiger
2023-02-20 23:30:36 +02:00
parent 2160891b7f
commit 921bbc1809
8 changed files with 98 additions and 2 deletions

View File

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