budget-view-finance/src/services/whatsAppService.ts
gpt-engineer-app[bot] 0ab8fa63d1 Fix: Resolve missing exports in whatsAppService
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.
2025-06-21 12:05:20 +00:00

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';