-
Notifications
You must be signed in to change notification settings - Fork 336
/
engines.js
34 lines (30 loc) · 860 Bytes
/
engines.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
/*
* @Author: Eduardo Policarpo
* @contact: +55 43996611437
* @Date: 2021-05-20 18:05:16
* @LastEditTime: 2021-06-07 03:18:22
*/
import whatsappwebjs from "./engines/WhatsappWebJS.js";
import venom from "./engines/Venom.js";
import whatsconnet from "./engines/WppConnect.js";
import routeWhatsappwebjs from "./routers/WhatsappWebJS.js";
import routeVenom from "./routers/Venom.js";
import routeWhatsconnet from "./routers/WppConnect.js";
var engines = {
1: {
descricao: "Engine Whatsapp-Web-JS",
motor: whatsappwebjs,
router: routeWhatsappwebjs.Router,
},
2: {
descricao: "Engine WPPConnect",
motor: whatsconnet,
router: routeWhatsconnet.Router,
},
3: {
descricao: "Engine Venom",
motor: venom,
router: routeVenom.Router,
},
};
export default { engines };