6 lines
199 B
Python
6 lines
199 B
Python
import disnake
|
|
import disnake.ext.commands as commands
|
|
import inspect
|
|
|
|
bot = commands.Bot(command_prefix="!")
|
|
print(f"load_extension is coroutine: {inspect.iscoroutinefunction(bot.load_extension)}")
|