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.
1 parent 7aeb651 commit 901838bCopy full SHA for 901838b
dev/bot/__main__.py
@@ -7,6 +7,7 @@
7
from discord.ext import commands
8
9
import pydis_core
10
+from pydis_core.exts.source import SourceCode
11
12
from . import Bot
13
@@ -30,6 +31,7 @@ async def main() -> None:
30
31
"""Run the bot."""
32
bot.http_session = aiohttp.ClientSession()
33
async with bot:
34
+ await bot.add_cog(SourceCode(bot, github_repo="https://github.com/python-discord/bot-core"))
35
await bot.start(os.getenv("BOT_TOKEN"))
36
37
0 commit comments