-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.js
27 lines (17 loc) · 1.01 KB
/
main.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
/*
|----------------------------------------------------------------------------------------------------------------------------------------|
_ ____ _ _ _ _ _ ____
/ \ | _ \ / \ | |__ __| |_ _| | | __ _ | _ \ _____ __
/ _ \ | |_) | / _ \ | '_ \ / _` | | | | | |/ _` |_____| | | |/ _ \ \ / /
/ ___ \| _ < / ___ \| |_) | (_| | |_| | | | (_| |_____| |_| | __/\ V /
/_/ \_\_| \_\/_/ \_\_.__/ \__,_|\__,_|_|_|\__,_| |____/ \___| \_/
** THANK YOU FOR USING BAILEYS BASE BY ARAbdulla-Dev **
** WHATSAPP ME FOR ANY HELP - +94704281955 **
|----------------------------------------------------------------------------------------------------------------------------------------|
*/
const connectToWhatsApp = require('./base');
async function startWhatsApp() {
const { sock } = await connectToWhatsApp();
// Do anything here...
}
startWhatsApp();