empty start stops

This commit is contained in:
Specoolazius 2022-04-02 21:03:31 +02:00
parent 3c835bcf38
commit 42904399e9

View File

@ -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