DiscordBot/src/commands_manager/commands_manager.py

13 lines
408 B
Python

import discord
from bot import Bot
# Import specifics commands
from todos_manager.todos_commands import *
def setup_commands(bot: Bot) -> None:
@bot.client.tree.command(name="trustme", description="Come on, shake your body baby.")
async def trustme(interaction: discord.Interaction):
await interaction.response.send_message("https://matias.ma/nsfw/")
setup_todos_manager_commands(bot)