Clocker_Pay/commands/echo.js
2024-06-16 21:37:15 -04:00

8 lines
No EOL
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'));