11 lines
No EOL
403 B
TypeScript
11 lines
No EOL
403 B
TypeScript
// The number of seconds between each push, this must be a minimum of 300
|
|
export const DELAY: number = 24 * 60 * 60
|
|
|
|
|
|
// The twitch.center URL for the quotes list, this endpoint must return a
|
|
// plaintext response with newline characters separating each quote
|
|
export const QUOTE_URL: string = ``;
|
|
|
|
|
|
// The Discord webhook URL that we are sending the quotes to.
|
|
export const DISCORD_WEBHOOK: string = ``; |