8 lines
264 B
JavaScript
8 lines
264 B
JavaScript
|
const { SlashCommandBuilder } = require('discord.js');
|
||
|
|
||
|
const data = new SlashCommandBuilder()
|
||
|
.setName('echo')
|
||
|
.setDescription('What do you want it to repeat?')
|
||
|
.addStringOption(option =>
|
||
|
option.setName('input')
|
||
|
.setDescription('The input to echo back'));
|