Files
Syntrel/cogs/livecontainer/jit26.py
2025-11-22 14:18:35 -05:00

20 lines
460 B
Python

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