added a test command

This commit is contained in:
Seaswimmer 2023-02-28 14:44:24 -05:00
parent 6656b3673c
commit ee541ac106

View file

@ -9,6 +9,13 @@ class Galaxy(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.command()
@commands.guild_only()
@checks.admin()
async def roleinfo_test(self, ctx, role: discord.Role):
"""Testing"""
await ctx.send(role.members)
@commands.command()
@commands.guild_only()
async def roleinfo(self, ctx, role: discord.Role):