mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-09 23:00:18 +00:00
23 lines
492 B
JavaScript
23 lines
492 B
JavaScript
require('dotenv/config');
|
||
|
||
module.exports = {
|
||
|
||
//credentials
|
||
token: process.env.DISCORD_TOKEN,
|
||
|
||
//support
|
||
supportGuild: "https://discord.gg/rRA65Mn",
|
||
devId: [
|
||
"493174343484833802",
|
||
"360363051792203779"
|
||
],
|
||
|
||
//misc
|
||
embedColor: "#88aa00",
|
||
invite: "https://discordapp.com/api/oauth2/authorize?client_id=684109535312609409&permissions=3427328&scope=bot",
|
||
|
||
//Settings
|
||
prefix: process.env.RADIOX_PREFIX || process.env.PREFIX || "rx>",
|
||
|
||
}
|