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

@@ -5,11 +5,13 @@ def register_callbacks():
from bot.callbacks import (
exception,
image_info,
set_model
set_model,
common
)
exception.register()
image_info.register()
set_model.register()
common.register()
print('[gray]All callbacks registered[/]')