-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cfd8ad1
commit 5075328
Showing
2 changed files
with
18 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
import { SlashCommandBuilder, CommandInteraction, AttachmentBuilder } from 'discord.js'; | ||
import { Command } from '../../interfaces/command'; | ||
import path from 'path'; | ||
|
||
const NodeImage: Command = { | ||
data: new SlashCommandBuilder() | ||
.setName('node') | ||
.setDescription('Gottfried loves node.'), | ||
|
||
async run(interaction: CommandInteraction) { | ||
const imagePath = path.join(__dirname, '../../data/imgs/node.png'); | ||
const imageAttachment = new AttachmentBuilder(imagePath); | ||
|
||
await interaction.reply({ files: [imageAttachment] }); | ||
}, | ||
}; | ||
|
||
export default NodeImage; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.