Please describe the problem you are having in as much detail as possible:
Im having issue with registering commands or interactions.
The code runs without errors but /ping command doesnt show up in / commands.
Include a reproducible code sample here, if possible:
// index.js
const {Client, Intents} = require('discord.js');
const { token } = require('./config.json');
const client = new Client({
intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES...

