Files
TeleDiffusionBot/bot/callbacks/register.py
2023-03-06 22:53:30 +02:00

16 lines
271 B
Python

from rich import print
def register_callbacks():
from bot.callbacks import (
exception,
image_info,
set_model
)
exception.register()
image_info.register()
set_model.register()
print('[gray]All callbacks registered[/]')