5 lines
159 B
Python
5 lines
159 B
Python
|
|
import disnake
|
||
|
|
import disnake.ext.commands as commands
|
||
|
|
bot = commands.Bot(command_prefix="!")
|
||
|
|
print(f"Check methods: {[m for m in dir(bot) if 'check' in m]}")
|