// A bot OAuth token that has access to the channels we are looking in. export const DISCORD_OAUTH_TOKEN: string = ``; // The Discord channel ID that the bot will be posting in export const DISCORD_CHANNEL_ID: string = ``; // The Discord webhook that we will be posting into export const DISCORD_WEBHOOK: string = ``; // The name of the webhook in Discord, if left undefined it will use the // default name from within Discord export const DISCORD_WEBHOOK_USERNAME: string|undefined = undefined; // The Discord webhook that the results of each quote export const RESULT_WEBHOOK: string = ``; // The file names for the database operations export const DB_NAME: string = `used_quotes.json`; export const MSG_ID_FILE: string = `msg_id`; // The twitch.center URL for the quote list export const QUOTE_URL: string = ``; // The base endpoints for Discord export const DISCORD_API_BASE: string = `https://discordapp.com/api/v6`; export const DISCORD_CDN_BASE: string = `https://cdn.discordapp.com`; // The details for the Discord emoji export const EMOJI_A_ID: string = `701289852146286633`; export const EMOJI_B_ID: string = `701289851923988540`; export const EMOJI_A_NAME: string = `star`; export const EMOJI_B_NAME: string = `like`;