2025-05-08 01:13:54 +00:00
|
|
|
// Export all mail modules for simplified imports
|
|
|
|
export * from './routing/index.js';
|
|
|
|
export * from './security/index.js';
|
|
|
|
|
|
|
|
// Make the core and delivery modules accessible
|
|
|
|
import * as Core from './core/index.js';
|
|
|
|
import * as Delivery from './delivery/index.js';
|
|
|
|
|
|
|
|
export { Core, Delivery };
|
|
|
|
|
2025-05-27 21:03:17 +00:00
|
|
|
// For direct imports
|
2025-05-08 01:13:54 +00:00
|
|
|
import { Email } from './core/classes.email.js';
|
|
|
|
import { DcRouter } from '../classes.dcrouter.js';
|
|
|
|
|
2025-05-27 21:03:17 +00:00
|
|
|
// Re-export commonly used classes
|
2025-05-08 01:13:54 +00:00
|
|
|
export {
|
2025-05-27 21:03:17 +00:00
|
|
|
Email,
|
2025-05-08 01:13:54 +00:00
|
|
|
DcRouter
|
|
|
|
};
|