8 lines
195 B
TypeScript
8 lines
195 B
TypeScript
|
import { MongoClient } from 'mongodb';
|
||
|
|
||
|
export const createConnection = async () => {
|
||
|
const client = new MongoClient(process.env.MONGODB_URI, {});
|
||
|
await client.connect();
|
||
|
return client;
|
||
|
};
|