Spaces:
Sleeping
Sleeping
| import { MongoClient, ServerApiVersion } from 'mongodb'; | |
| const uri = "mongodb+srv://junaid:junaid@cluster0.0ec6y.mongodb.net/?appName=Cluster0"; | |
| const client = new MongoClient(uri, { | |
| serverApi: { | |
| version: ServerApiVersion.v1, | |
| strict: true, | |
| deprecationErrors: true, | |
| } | |
| }); | |
| function provideClient() { | |
| return client; | |
| } | |
| export {provideClient} |