Skip to content

Commit

Permalink
joel tech
Browse files Browse the repository at this point in the history
  • Loading branch information
aaj2005 committed Mar 22, 2024
1 parent fc55ab5 commit bae8275
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions apollo.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
"cogs.irc",
"cogs.parallelism",
"cogs.welcome",
"cogs.commands.joeltech",
]


Expand Down
21 changes: 21 additions & 0 deletions cogs/commands/joeltech.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import discord
from discord.ext import commands
from discord.ext.commands import Bot, Context

LONG_HELP_TEXT = """
Summon the Joel of the Tech.
"""


SHORT_HELP_TEXT = """Joel Tech is here to help"""

class JoelTech(commands.Cog):
def __init__(self, bot: Bot):
self.bot = bot

@commands.hybrid_command(help=LONG_HELP_TEXT, brief=SHORT_HELP_TEXT)
async def joeltech(self, ctx: Context):
await ctx.send("<@690594780195061760> <:joel_tech:1217584610029076480>")

async def setup(bot: Bot):
await bot.add_cog(JoelTech(bot))

0 comments on commit bae8275

Please sign in to comment.