23 lines
579 B
TypeScript
23 lines
579 B
TypeScript
/*
|
|
* File: constants.ts
|
|
* Description: Application constants and configuration values
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|
|
import Config from 'react-native-config';
|
|
|
|
// API Configuration
|
|
export const API_CONFIG = {
|
|
BASE_URL:Config.BASE_URL,
|
|
DICOM_BASE_URL:'https://demo.medpacsystems.com',
|
|
TIMEOUT: 30000,
|
|
RETRY_ATTEMPTS: 3,
|
|
RETRY_DELAY: 1000,
|
|
} as const;
|
|
|
|
|
|
/*
|
|
* End of File: constants.ts
|
|
* Design & Developed by Tech4Biz Solutions
|
|
* Copyright (c) Spurrin Innovations. All rights reserved.
|
|
*/
|