Move back to Python

This commit is contained in:
Michał Gdula 2023-09-07 13:26:02 +01:00
parent c2e3982cc5
commit 640351e5bf
16 changed files with 893 additions and 1789 deletions

10
lynxie/config.py Normal file
View file

@ -0,0 +1,10 @@
import dotenv
from discord import Object
try:
DISCORD_TOKEN = dotenv.dotenv_values(".env")["DISCORD_TOKEN"]
except KeyError:
print("DISCORD_TOKEN not found in .env file")
exit(1)
DISCORD_GUILD_ID = Object(id=1040757387033849976)