matrix-alertbot/matrix-alertbot

10 lines
202 B
Text
Raw Normal View History

#!/usr/bin/env python3
try:
2022-06-13 20:55:01 +02:00
from matrix_alertbot import main
# Run the main function of the bot
main.main()
except ImportError as e:
2022-06-13 20:55:01 +02:00
print("Unable to import matrix_alertbot.main:", e)