Initial commit.

This commit is contained in:
DefsNotQuack
2025-03-29 10:58:56 +10:00
commit b17e3c5f28
6 changed files with 137 additions and 0 deletions

15
cogs/hello.py Normal file
View File

@@ -0,0 +1,15 @@
import discord
from discord.ext import commands
class Hello(commands.Cog):
def __init__(self, bot):
self.bot = bot
@commands.slash_command(name="hello",
description="Say hi to the bot!",
guild_ids=[681414775468589180])
async def hello(self, ctx: discord.ApplicationContext):
await ctx.respond("Hello there!")
def setup(bot):
bot.add_cog(Hello(bot))