Simple framework for discord.jsSupport: SlashCommand, Components (Buttons, Selectors), Middlewares, EventsDetail: Application User Commands, Guild Commands, Private Commands, User CommandsFast ExampleFor more details see hereimport{Client}from"discord.js";import{DjsFramework}from"snpk-djs-framework";constclient=newClient({// Bot intentsintents: ["Guilds","GuildMessages","DirectMessages","GuildVoiceStates",]});// Load DjsFrameworkconstdjs_frame=newDjsFramework({locations: {base: "src",commands: "handlers/commands",events: "handlers/events",components: "handlers/components",middlewares: "handlers/middlewares"},ownerIDs: ["312909267327778818"],failCallbacks: {onDontOwner: (ctx)=>{console.log(ctx);},onPermissionsClient: (ctx)=>{console.log(ctx);},onPermissionsUser: (ctx)=>{console.log(ctx);}}});// Loginclient.login("").then(()=>{djs_frame.register(client);});