feat: Add command to download Windows Redist All-in-One package

This commit is contained in:
pancakes-proxy 2025-05-22 19:16:35 +09:00
parent 6828feafac
commit 83a2650919

View File

@ -51,5 +51,14 @@ class Download(commands.Cog):
) )
await interaction.response.send_message(embed=embed) await interaction.response.send_message(embed=embed)
@app_commands.command(name="download_windows_redist", description="Get the Windows Redist All-in-One package")
async def download_windows_redist(self, interaction: discord.Interaction):
embed = discord.Embed(
title="Download Windows Redist All-in-One",
description="[Click here to download windows_redist_allinone.zip](https://filehost.internettools.org/windows_redist_allinone.zip)",
color=discord.Color.teal()
)
await interaction.response.send_message(embed=embed)
async def setup(bot): async def setup(bot):
await bot.add_cog(Download(bot)) await bot.add_cog(Download(bot))