8 lines
172 B
Python
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')
|