16 lines
524 B
Plaintext
16 lines
524 B
Plaintext
// Discord Application Configuration
|
|
// Configure these values for your Discord application
|
|
// Get yours at: https://discord.com/developers/applications
|
|
|
|
return {
|
|
// Tangle Tart application
|
|
APPLICATION_ID: "1446585686789586975",
|
|
PUBLIC_KEY: "18ce78765f6d57a6d25af9b088271c96f8d7357723d246080ae58e49c71e79bc",
|
|
|
|
// OAuth2 redirect URI (configured in Discord Developer Portal)
|
|
REDIRECT_URI: "http://127.0.0.1/callback",
|
|
|
|
// Callback processing interval (ms) - ~60fps
|
|
CALLBACK_INTERVAL: 16
|
|
}
|