Files
mail_manager/src/services/index.ts
2026-02-10 20:26:45 -05:00

17 lines
499 B
TypeScript

/**
* Central export point for all Mail Manager services
*/
// Services
export { providerService } from './providerService';
export { serviceService } from './serviceService';
export { collectionService } from './collectionService';
export { entityService } from './entityService';
// Type exports
export type * from '../types/common';
export type * from '../types/provider';
export type * from '../types/service';
export type * from '../types/collection';
export type * from '../types/entity';