pip install disnake
import disnake from disnake . ext import commands bot = commands . Bot ( command_prefix = "*" , intents = disnake . Intents . all ( ) ) @bot.slash_command ( ) async def privet ( interaction : disnake . AppCmdInter ) : await interaction . send ( "Здравствуйте!" ) @bot.slash_command ( ) async def sleep ( interaction : disnake . AppCmdInter ) : await interaction . send ( "Всем спокойной ночи!" ) bot . run ( "Сюда ключ от 'приложения' Discord" )
@bot.slash_command()
"/"