changed dir

This commit is contained in:
2026-01-23 13:13:31 -06:00
parent df37f59ff9
commit 8a04151bd2
12 changed files with 48 additions and 11 deletions

View File

@@ -0,0 +1,11 @@
#!/usr/bin/env python3
"""
Email processing components
"""
from .parser import EmailParser
from .bounce_handler import BounceHandler
from .rules_processor import RulesProcessor
from .blocklist import BlocklistChecker
__all__ = ['EmailParser', 'BounceHandler', 'RulesProcessor', 'BlocklistChecker']