Administrator/administrator/modules/test/__init__.py

16 lines
408 B
Python
Raw Permalink Normal View History

2023-08-25 00:16:33 +02:00
from discord import Interaction, app_commands, Object
from discord.ext.commands import Cog, Bot
class Test(Cog):
def __init__(self, bot: Bot) -> None:
self.bot = bot
2024-02-19 20:21:31 +01:00
2023-08-25 00:16:33 +02:00
@app_commands.command(name="ping")
async def ping(self, interaction: Interaction) -> None:
await interaction.response.send_message("Pong !", ephemeral=True)
async def setup(bot: Bot) -> None:
await bot.add_cog(Test(bot))