initial commit

This commit is contained in:
neoarz
2025-11-22 14:18:35 -05:00
parent bafd8fc19a
commit 6dec097a20
5 changed files with 221 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import discord
from discord.ext.commands import Context
def jit26_command():
async def command(self, context: Context):
embed = discord.Embed(
title="Hello World",
description="hello world",
color=0x0169FF,
)
if context.interaction:
await context.interaction.response.send_message(embed=embed)
else:
await context.send(embed=embed)
return command