Init commit

This commit is contained in:
Sweetbread
2023-05-03 19:53:01 +03:00
commit 12c87b99d3
45 changed files with 3890 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
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))