1
0
Fork 0
mirror of https://git.mctaylors.ru/mctaylors/Lurker.git synced 2024-11-23 11:48:03 +03:00
Lurker/main.py

23 lines
544 B
Python
Raw Normal View History

import aiohttp
import os
import client
import asyncio
from next.ext.commands import DefaultHelpCommand
from sys import exit
async def main():
async with aiohttp.ClientSession() as session:
token = os.getenv("BOT_TOKEN")
if token is None:
print("Environment variable BOT_TOKEN is not set. Exiting.")
exit(1)
c = client.Client(session, token)
c.help_command = DefaultHelpCommand("Available commands")
print("Starting client...")
await c.start()
asyncio.run(main())