Skip to content
Draft

gm #143

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions plugins/GM/__init__.py
Original file line number Diff line number Diff line change
@@ -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")
6 changes: 6 additions & 0 deletions plugins/GM/plugin.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"name": "GM",
"version": "1.0.0",
"author": "Jack Arthur Harrhy",
"main_class": "GM"
}