mirror of
https://github.com/overleaf/overleaf.git
synced 2025-02-07 02:31:39 +00:00
12 lines
281 B
JavaScript
12 lines
281 B
JavaScript
import Settings from '@overleaf/settings'
|
|
import { MongoClient } from 'mongodb'
|
|
|
|
export { ObjectId } from 'mongodb'
|
|
|
|
export const mongoClient = new MongoClient(Settings.mongo.url)
|
|
|
|
const mongoDb = mongoClient.db()
|
|
|
|
export const db = {
|
|
contacts: mongoDb.collection('contacts'),
|
|
}
|