added a testing command

This commit is contained in:
Seaswimmer 2023-02-28 15:45:30 -05:00
parent f733d420cf
commit e6905fcb58

View file

@ -9,6 +9,12 @@ class Galaxy(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command()
@checks.admin()
@commands.guild_only()
async def testcmd(self, ctx, role: discord.Role):
await ctx.send(content=f"{role}")
@commands.command()
@commands.guild_only()
async def userinfo(self, ctx, member: discord.Member):