Started migrating the DB to MongoDB

This commit is contained in:
Tiago Ribeiro
2024-09-07 13:37:08 +01:00
parent 8c94bcac52
commit e8b7c5ff80
5 changed files with 140 additions and 54 deletions

5
src/mongodb.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
import {MongoClient} from "mongodb";
declare global {
var _mongoClientPromise: Promise<MongoClient>;
}