forked from magneum/BloomBot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
module-alias.js
33 lines (33 loc) ยท 2.34 KB
/
module-alias.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
"โโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑ( โธ๐๐ฅ๐จ๐จ๐ฆ๐๐จ๐ญ (๐ฆ๐ฎ๐ฅ๐ญ๐ข-๐๐๐ฏ๐ข๐๐) ๐๐ฒ ๐๐๐ ๐ง๐๐ฎ๐ฆโข )โฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโ";
// โโงเผป โธ๐๐ฅ๐จ๐จ๐ฆ๐๐จ๐ญ (๐ฆ๐ฎ๐ฅ๐ญ๐ข-๐๐๐ฏ๐ข๐๐) ๐๐ฒ ๐๐๐ ๐ง๐๐ฎ๐ฆโข
// โ>> is a whatsapp user-bot with automation, moderation, music, games and more of 200+ commands!
// โ
// โ
// โโฆ> ๐ A versatile whatsApp multi-purpose bot designed for group management and user convenience.
// โโฆ> ๐ Simplifies group management tasks and enhances the overall user experience.
// โโฆ> โ ๏ธ Please note: Engaging in spamming activities may lead to account suspension. Use responsibly!
// โโฆ> ๐ BloomBot is intended for fun and convenience, but we're not responsible for account bans.
// โโฆ> ๐ forking the repository is allowed, but customized versions or modified plugins are unsupported.
// โโฆ> โ ๏ธ Exercise caution and take responsibility for any modifications made to the bot.
// โโฆ> ๐ Need assistance or have issues? Contact our developers.
// โโฆ> ๐ We'll continue providing updates and support for the original version of the bot.
// โโฆ> ๐ Enjoy the features and functionality of BloomBot responsibly! Make the most out of your
// โ whatsApp group management experience! ๐
// โ
// โ ๐จ๐๐ฌ๐๐ ๐ ๐๐จ๐ญ๐ข๐๐๐จ
// โโฆ> โธBloomBot is in no way affiliated with, authorized, maintained,
// โโฆ> sponsored or endorsed by whatsApp or any of its affiliates or
// โโฆ> subsidiaries. This is an independent and unofficial software.
// โโฆ> Use at your own risk.
// โ
// โโ โ๏ธDevelopers: +918436686758, +918250889325
"โโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑ( โธ๐๐ฅ๐จ๐จ๐ฆ๐๐จ๐ญ (๐ฆ๐ฎ๐ฅ๐ญ๐ข-๐๐๐ฏ๐ข๐๐) ๐๐ฒ ๐๐๐ ๐ง๐๐ฎ๐ฆโข )โฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโฑโ";
const moduleAlias = require("module-alias");
const aliasMapping = {
"@": "../",
"#": "../../",
"*": "../../../",
};
Object.entries(aliasMapping).forEach(([alias, target]) => {
moduleAlias.addAlias(alias, target);
});