osnova-api-alert/telegram/__init__.py

12 lines
232 B
Python
Raw Normal View History

2024-10-09 16:33:20 +00:00
from .zbx_msg import (
send_message_to_dashboard,
del_message_from_dashboard,
send_message_to_net_chat,
)
2024-10-09 11:26:34 +00:00
__all__ = [
"send_message_to_dashboard",
"del_message_from_dashboard",
2024-10-09 16:33:20 +00:00
"send_message_to_net_chat",
2024-10-09 11:26:34 +00:00
]