Skip to main content
Deno 2 is finally here 🎉️
Learn more

random-fresh-plugins

random fresh plugins for your project

Discord

Provides the basic api needed for embedded discord applications.

import { DiscordPlugin } from "https://deno.land/x/randplug/discord.ts"

export default defineConfig({
  plugins: [
    DiscordPlugin({
        clientId: "your-client-id",
        clientSecret: "your-client-secret",
    });
  ],
});