Files
contest-assistant/main.py
2021-02-07 05:37:02 -06:00

8 lines
159 B
Python

from contest import client
if __name__ == "__main__":
bot = client.ContestClient()
with open('token.dat', 'r') as file:
bot.run(file.read())