From 42904399e9493f17ad8f7d3b7a70155e5f8f7eae Mon Sep 17 00:00:00 2001 From: Specoolazius Date: Sat, 2 Apr 2022 21:03:31 +0200 Subject: [PATCH] empty start stops --- bot/extensions/startstop.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/bot/extensions/startstop.py b/bot/extensions/startstop.py index e69de29..3c001d6 100644 --- a/bot/extensions/startstop.py +++ b/bot/extensions/startstop.py @@ -0,0 +1,18 @@ +import discord +from discord.commands import slash_command + +from libs import Client + + +class StartStop(discord.Cog): + """< discord.Cog > + + Extension for starting and stopping the Minecraft server. + """ + + def __init__(self, bot: Client): + self.bot = bot + + @slash_command(name='start') + async def __execute_start(self, ctx: discord.ApplicationContext) -> None: + pass