diff options
author | Eugene Sokolov <eug-vs@keemail.me> | 2020-12-04 01:33:37 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-04 01:33:37 +0300 |
commit | fac35a9a0ad1628cf31380bf29c251f6c51f13f1 (patch) | |
tree | 0aa142dce4a5d8dc4e90b090007cfbba3b4fc0fb /src/connectDb.js | |
parent | 778f614a8eb753529c02d71e49486846391f0a3f (diff) | |
parent | 8ef929e503b00d93c5fee4ab996aeaa9abf283d3 (diff) | |
download | bsu-fantom-fac35a9a0ad1628cf31380bf29c251f6c51f13f1.tar.gz |
Refactor/mongo cronjob
Diffstat (limited to 'src/connectDb.js')
-rw-r--r-- | src/connectDb.js | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/connectDb.js b/src/connectDb.js index c7ad13b..416ae1d 100644 --- a/src/connectDb.js +++ b/src/connectDb.js @@ -32,9 +32,5 @@ const connectDb = () => new Promise ((resolve, reject) => { }); }); -const getConnection = () => connection; -module.exports = { - connectDb, - getConnection -}; +module.exports = connectDb; |