Clocker_Pay/commands/echo.js

8 lines
264 B
JavaScript
Raw Normal View History

2024-06-17 02:37:15 +01:00
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'));