mirror of
https://github.com/beilunyang/moemail.git
synced 2026-05-11 10:00:25 +08:00
10 lines
284 B
TypeScript
10 lines
284 B
TypeScript
export const WEBHOOK_CONFIG = {
|
|
MAX_RETRIES: 3, // Maximum retry count
|
|
TIMEOUT: 10_000, // Timeout time (milliseconds)
|
|
RETRY_DELAY: 1000, // Retry delay (milliseconds)
|
|
EVENTS: {
|
|
NEW_MESSAGE: 'new_message',
|
|
}
|
|
} as const
|
|
|
|
export type WebhookConfig = typeof WEBHOOK_CONFIG
|