This repository has been archived on 2025-01-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
natsuko/cogs/tamagochi.py
T
Sweetbread 12c87b99d3 Init commit
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))