7 lines
199 B
Python
7 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)}")
|