10 lines
227 B
Python
10 lines
227 B
Python
#!/bin/python
|
|
|
|
from lib.covidBot import covidBot
|
|
|
|
|
|
if(__name__ == '__main__'):
|
|
with open('.keys/bot_api.key') as key:
|
|
discord_api_key = key.readline().strip()
|
|
client = covidBot()
|
|
client.run(discord_api_key)
|