budget-view-finance/src/services/cartaoCreditoService.ts
gpt-engineer-app[bot] 70c125715a Refactor despesasService.ts
Refactor `despesasService.ts` into smaller, modular files to improve code organization and maintainability.
2025-05-21 11:47:11 +00:00

22 lines
467 B
TypeScript

/**
* Re-export all functions from the refactored services for backward compatibility
*/
// Re-export all functions from cartoesService
export {
getCartoes,
criarCartao,
getCartao
} from './cartao/cartoesService';
// Re-export all functions from despesas services
export {
getDespesasCartao,
criarDespesa,
getTotalDespesasCartao
} from './cartao/despesas';
// Re-export from utilities
export { gerarCartaoCodigo } from './cartao/cartaoCodigoUtils';