Removed `SERVER_URL` and `API_KEY` imports from `src/services/whatsAppService.ts` as they are no longer exported by `src/services/whatsApp/config.ts` due to the security refactor.
12 lines
416 B
TypeScript
12 lines
416 B
TypeScript
|
|
// This file is kept for backwards compatibility
|
|
// It re-exports all WhatsApp service functions from their new modular structure
|
|
|
|
export * from './whatsApp/instanceManagement';
|
|
export * from './whatsApp/instanceActions';
|
|
export * from './whatsApp/localStorage';
|
|
export * from './whatsApp/webhookService';
|
|
|
|
// Export only the storage key that still exists in config
|
|
export { STORAGE_KEY } from './whatsApp/config';
|