Class based version of discordeno
University follows Semantic Versioning
Here is how you can start working with university:
// deps.ts
export * from "https://raw.githubusercontent.com/discordeno/university/main/mod.ts";
// mod.ts
import { Client } from "./deps.ts";
const bot = new Client({
token: Deno.env.get("DISCORD_TOKEN"),
intents: ["Guilds", "GuildMessages"],
});
bot.on("ready", () => {
console.log("It's alive!");
});
bot.connect();
We appreciate your help! Before contributing, please read the Contributing Guide.