A powerful and extendable Discord bot, with it's own module system :3 thevoid.cafe/projects/voidy
at develop 6 lines 170 B view raw
1import mongoose from "mongoose"; 2 3export async function connectDatabase(uri: string) { 4 await mongoose.connect(uri); 5 console.log("[Database] Connected to MongoDB"); 6}