7 lines
247 B
Python
7 lines
247 B
Python
import disnake
|
|
import disnake.ext.commands as commands
|
|
import asyncio
|
|
|
|
bot = commands.Bot(command_prefix="!")
|
|
print(f"Bot methods: {[m for m in dir(bot) if 'setup' in m or 'load' in m]}")
|
|
print(f"Is context manager: {hasattr(bot, '__aenter__')}")
|