From 8bcd0ebe639954527e6f3c5c0c0680043c97fa56 Mon Sep 17 00:00:00 2001 From: Jack Arthur Harrhy Date: Fri, 22 Apr 2022 08:58:59 -0230 Subject: [PATCH] gm --- plugins/GM/__init__.py | 12 ++++++++++++ plugins/GM/plugin.json | 6 ++++++ 2 files changed, 18 insertions(+) create mode 100644 plugins/GM/__init__.py create mode 100644 plugins/GM/plugin.json diff --git a/plugins/GM/__init__.py b/plugins/GM/__init__.py new file mode 100644 index 0000000..07c6a13 --- /dev/null +++ b/plugins/GM/__init__.py @@ -0,0 +1,12 @@ +from nextcord.ext import commands + +from Plugin import AutomataPlugin + + +class GM(AutomataPlugin): + """gm""" + + @commands.command() + async def gm(self, ctx: commands.Context): + """gm""" + await ctx.send("gm") diff --git a/plugins/GM/plugin.json b/plugins/GM/plugin.json new file mode 100644 index 0000000..1a27788 --- /dev/null +++ b/plugins/GM/plugin.json @@ -0,0 +1,6 @@ +{ + "name": "GM", + "version": "1.0.0", + "author": "Jack Arthur Harrhy", + "main_class": "GM" +}