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

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