File size: 241 Bytes
74e470a
 
d50360d
74e470a
4feafca
 
 
d50360d
1
2
3
4
5
6
7
8
9
import mongoose from "mongoose";
import { config } from "./config";

export const connectDatabase = async () => {
  return mongoose.connect(config.db.uri).then(() => {
    console.log(`Connected to MongoDB database successfully!`);
  });
};