9 lines
202 B
Python
Executable file
9 lines
202 B
Python
Executable file
#!/usr/bin/env python3
|
|
|
|
try:
|
|
from matrix_alertbot import main
|
|
|
|
# Run the main function of the bot
|
|
main.main()
|
|
except ImportError as e:
|
|
print("Unable to import matrix_alertbot.main:", e)
|