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