/**
 * LINE Pay API Base URLs
 */
export const LINE_PAY_API_BASE_URL = {
  production: 'https://api-pay.line.me',
  sandbox: 'https://sandbox-api-pay.line.me',
}

/**
 * Default Timeout (20 seconds)
 */
export const DEFAULT_TIMEOUT = 20000
