We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40163cf + e0d01e6 commit e8c1561Copy full SHA for e8c1561
discordai/bot/__init__.py
@@ -17,6 +17,7 @@
17
import discord
18
from discord.ext import commands
19
from discord.ext.commands import Bot, Context
20
+from discordai import __version__ as version
21
22
intents = discord.Intents.default()
23
intents.message_content = True
@@ -33,6 +34,7 @@ async def on_ready() -> None:
33
34
The code in this even is executed when the bot is ready
35
"""
36
print(f"Logged in as {bot.user.name}")
37
+ print(f"DiscordAi version: {version}")
38
print(f"discord.py API version: {discord.__version__}")
39
print(f"Python version: {platform.python_version()}")
40
print(f"Running on: {platform.system()} {platform.release()} ({os.name})")
0 commit comments