Files
PointsBot/PointsBot.py
2021-02-15 21:25:58 -08: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')