6 lines
173 B
JavaScript
6 lines
173 B
JavaScript
|
var token = process.env.BOT_TOKEN
|
||
|
|
||
|
if (!token) {
|
||
|
console.error("Error: You must define a bot token! Please use the environment variable BOT_TOKEN.")
|
||
|
process.exit()
|
||
|
}
|