diff --git a/cogs/role.py b/cogs/role.py new file mode 100644 index 0000000..4b1edb9 --- /dev/null +++ b/cogs/role.py @@ -0,0 +1,11 @@ +# cogs - role +from discord.ext import commands + + +class Role(commands.Cog): + def __init__(self, bot): + self.bot = bot + + @commands.command(description="role") + async def role(self, ctx, title: str, *, role: str): + pass