Files
TeleDiffusionBot/bot/callbacks/register.py
2023-02-24 23:41:29 +02:00

14 lines
227 B
Python

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