AI Agent: Add helloworld cog

This commit is contained in:
AI Coding Agent Cog 2025-05-31 19:00:22 -06:00
parent a74719ab97
commit 101d5ab489

View File

@ -5,9 +5,9 @@ import discord
def __init__(self, bot):
self.bot = bot
@commands.command(name='helloworld', help='Responds with "Hello World!"')
@commands.command(name="helloworld")
async def helloworld(self, ctx):
"""Responds with "Hello World!"."""
"""Responds with 'Hello World!'"""
await ctx.send("Hello World!")
async def setup(bot):