mirror of
https://github.com/Xevion/contest-assistant.git
synced 2025-12-06 01:14:37 -06:00
8 lines
159 B
Python
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())
|