-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
119 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// import < | ||
const token = require('../index.js'); | ||
|
||
// > | ||
|
||
|
||
// if (token exists) < | ||
// else (then success) < | ||
if (token) { | ||
|
||
console.log('Token exists.'); | ||
process.exit(1); | ||
|
||
} else {process.exit(0);} | ||
|
||
// > |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// < Project PasCam by Alex Arbuckle > // | ||
|
||
|
||
// import < | ||
const client = require('./source/client.js'); | ||
|
||
// > | ||
|
||
|
||
// variables < | ||
const guildId = '970204828858990593'; | ||
const channelId = '1129843141101498378'; | ||
const applicationId = '976408750070054943'; | ||
const token = 'OTc2NDA4NzUwMDcwMDU0OTQz.Gc750P.TBr6p6LFD9mfhqOWhFzhq3BzkRTaTTCoITqAA0'; | ||
|
||
// > | ||
|
||
|
||
(async () => { | ||
|
||
new client( | ||
|
||
pToken = token, | ||
pGuildId = guildId, | ||
pChannelId = channelId, | ||
pApplicationId = applicationId | ||
|
||
).run(); | ||
|
||
})(); | ||
|
||
|
||
// export < | ||
module.exports = token; | ||
|
||
// > | ||
|
||
|
||
// < In loving memory of our beloved bunny, Tribble. > // |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters