This repository has been archived on 2025-01-28. You can view files and clone it, but cannot push or open issues or pull requests.
natsuko/cogs/tamagochi.py
2023-05-03 19:58:19 +03:00

10 lines
302 B
Python

from discord import app_commands, Interaction
class Tamagochi(app_commands.Group):
@app_commands.command()
async def test(self, inter: Interaction):
await inter.response.send_message("Meow")
async def setup(bot):
bot.tree.add_command(Tamagochi(name="tamagochi", guild_only=True))