Advertisement
jensie1996

Bekijken data mongoose Discord v14

Jan 24th, 2024
620
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. const { SlashCommandBuilder } = require('discord.js');
  2. const testSchema = require('../schemas/test-schema');
  3.  
  4. module.exports = {
  5.     data: new SlashCommandBuilder()
  6.         .setName('leesdb')
  7.         .setDescription('lees data van in de DB'),
  8.     async execute(client, interaction) {
  9.  
  10.         // ...
  11.  
  12.     }
  13. };
  14.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement