diff options
Diffstat (limited to 'examples/discord-interactions/commands/hello.js')
-rw-r--r-- | examples/discord-interactions/commands/hello.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/discord-interactions/commands/hello.js b/examples/discord-interactions/commands/hello.js index 61d92cf82..df94931ff 100644 --- a/examples/discord-interactions/commands/hello.js +++ b/examples/discord-interactions/commands/hello.js @@ -1,6 +1,6 @@ const { SlashCommand, CommandOptionType } = require('slash-create'); -module.exports = class HelloCommand extends SlashCommand { +export default class HelloCommand extends SlashCommand { constructor(creator) { super(creator, { name: 'hello', |