Files
PointsBot/pointsbot.py
2026-02-21 22:25:47 +00:00

8 lines
172 B
Python

"""Entry point used for either runnning or freezing the bot."""
import pointsbot
try:
pointsbot.run()
except KeyboardInterrupt as e:
print('\nShutting down...\n')