Files
PointsBot/pointsbot.py

8 lines
172 B
Python
Raw Normal View History

"""Entry point used for either runnning or freezing the bot."""
import pointsbot
2021-02-15 21:25:58 -08:00
try:
pointsbot.run()
except KeyboardInterrupt as e:
print('\nShutting down...\n')