basic bot setup

This commit is contained in:
Xevion
2021-02-07 05:37:02 -06:00
commit b7d4a810e9
6 changed files with 51 additions and 0 deletions
+7
View File
@@ -0,0 +1,7 @@
from contest import client
if __name__ == "__main__":
bot = client.ContestClient()
with open('token.dat', 'r') as file:
bot.run(file.read())