-
Notifications
You must be signed in to change notification settings - Fork 13
/
config.js
28 lines (24 loc) · 1.37 KB
/
config.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
const fs = require('fs')
const chalk = require('chalk')
// Other
let gg = process.env.MODS
if (!gg) {
gg = "923087880256", "919774330611"
}
global.owner = gg.split(",");
global.mongodb = process.env.MONGODB || "none"
global.port = process.env.PORT || 8080
global.packname = process.env.PACKNAME || "Ari",
global.prefix= process.env.PREFIX || "-",
global.author = process.env.AUTHOR || "Ani",
global.sessionName = 'Aku',
global.name = process.env.NAME || "Kurumi",
global.menu = "🎫 Kurumi\'s Command Liste* 🎫\n\n💻 *Dev*\n❐ ```update, broadcast, ban, unban, chatid, session, join```\n\n🔮 *General*\n❐ ```help, delete, info, rank, profile```\n\n💠 *Fun*\n❐ ```ship, advice, quote, leaderboard, react, fact, bot```\n\n🔈 *Media*\n❐ ```yta, ytv, play, gify, yts, lyrics```\n\n👑 *Moderation*\n❐ ```demote, remove, ping, promote, deact, act, invite, group, seticon, setdesc```\n\n💮 *Weeb*\n❐ ```anime, manga, charecter, haigusha, neko, waifu, pokemon```\n\n🖇 *Utils*\n❐ ```google, image, meme, subreddit, tourl, img, iguser, gif, sticker, take, pinterest, carbon```\n\n🗃️ *Note: *Calls and Dm will lead you to ban*",
global.thumb = fs.readFileSync('./src/assest/info.jpeg')
let file = require.resolve(__filename)
fs.watchFile(file, () => {
fs.unwatchFile(file)
console.log(chalk.redBright(`Update'${__filename}'`))
delete require.cache[file]
require(file)
})