- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathloader.js
More file actions
Latest commit
12 lines (11 loc) · 376 Bytes
/
Copy pathloader.js
File metadata and controls
12 lines (11 loc) · 376 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
constPanelToMongo=require('./PanelToMongo.js');
constPanelServerToMonitor=require('./PanelServerToMongo.js');
constdatabase=require("../database/databaseConnect");
try{
database.connect(process.env.MONGO_URI);
console.log("database connect ")
}catch(e){
console.log(e);
}
PanelToMongo.getPanelUsers();
PanelServerToMonitor.getPanelUsers();