Files
ArvaldDos-Bot/db.ts
2024-07-22 09:19:12 +00:00

13 lines
264 B
TypeScript

import { MongoClient } from "mongodb";
//figure out the options and whatnot later
const client = new MongoClient(process.env.MONGO_CONNECTION_STRING);
let store, users, income;
client.connect().then(() => {
console.log("Connected to the database");
//
});