From f32c2694d20c3c887753b97e4851fb6fb9bc112a Mon Sep 17 00:00:00 2001 From: mc_fdc Date: Fri, 23 Sep 2022 12:07:22 +0900 Subject: [PATCH] Create role.py --- cogs/role.py | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 cogs/role.py 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