-
Notifications
You must be signed in to change notification settings - Fork 125
/
Copy pathindex.js
59 lines (46 loc) · 3.4 KB
/
index.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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
/**
//════════════════════════════════════════════════════════════════════════════════════════════//
// //
// WHATSAPP BOT-MD BETA //
// //
// V:2.5.0 //
// //
// //
// ██████╗ ██╗███████╗████████╗███████╗██████╗ ███╗ ███╗██████╗ //
// ██╔════╝ ██║██╔════╝╚══██╔══╝██╔════╝██╔══██╗ ████╗ ████║██╔══██╗ //
// ██║ ███╗██║█████╗ ██║ █████╗ ██║ ██║ ██╔████╔██║██║ ██║ //
// ██║ ██║██║██╔══╝ ██║ ██╔══╝ ██║ ██║ ██║╚██╔╝██║██║ ██║ //
// ╚██████╔╝██║██║ ██║ ███████╗██████╔╝ ██║ ╚═╝ ██║██████╔╝ //
// ╚═════╝ ╚═╝╚═╝ ╚═╝ ╚══════╝╚═════╝ ╚═╝ ╚═╝╚═════╝ //
// //
// //
// //
// //
//════════════════════════════════════════════════════════════════════════════════════════════//
*
* @project_name : Gifted-Md
* @author : Gifted Tech.
* @youtube : https://www.youtube.com/@giftedtechnexus
* @description : Gifted-Md ,A Multi-functional whatsapp user bot.
* @version 2.5.0
*
*
* Created By Gifted Tech.
* © 2024 Gifted-Md.
*/
/**const bot = require(__dirname + '/lib/smd')
const { VERSION } = require(__dirname + '/config')
const start = async () => {
Debug.info(`Gifted ${VERSION}`)
try {
await bot.init()
bot.logger.info('⏳ Database syncing!')
await bot.DATABASE.sync()
await bot.connect()
} catch (error) {
Debug.error(error);
start();
}
}
start();
**/