diff --git a/unified-worker/email-worker/.dockerignore b/email-worker/.dockerignore similarity index 100% rename from unified-worker/email-worker/.dockerignore rename to email-worker/.dockerignore diff --git a/unified-worker/email-worker/.env.example b/email-worker/.env.example similarity index 100% rename from unified-worker/email-worker/.env.example rename to email-worker/.env.example diff --git a/unified-worker/email-worker/.gitignore b/email-worker/.gitignore similarity index 100% rename from unified-worker/email-worker/.gitignore rename to email-worker/.gitignore diff --git a/unified-worker/email-worker/Dockerfile b/email-worker/Dockerfile similarity index 100% rename from unified-worker/email-worker/Dockerfile rename to email-worker/Dockerfile diff --git a/unified-worker/email-worker/Makefile b/email-worker/Makefile similarity index 100% rename from unified-worker/email-worker/Makefile rename to email-worker/Makefile diff --git a/unified-worker/email-worker/aws/__init__.py b/email-worker/aws/__init__.py similarity index 100% rename from unified-worker/email-worker/aws/__init__.py rename to email-worker/aws/__init__.py diff --git a/unified-worker/email-worker/aws/dynamodb_handler.py b/email-worker/aws/dynamodb_handler.py similarity index 100% rename from unified-worker/email-worker/aws/dynamodb_handler.py rename to email-worker/aws/dynamodb_handler.py diff --git a/unified-worker/email-worker/aws/s3_handler.py b/email-worker/aws/s3_handler.py similarity index 100% rename from unified-worker/email-worker/aws/s3_handler.py rename to email-worker/aws/s3_handler.py diff --git a/unified-worker/email-worker/aws/ses_handler.py b/email-worker/aws/ses_handler.py similarity index 100% rename from unified-worker/email-worker/aws/ses_handler.py rename to email-worker/aws/ses_handler.py diff --git a/unified-worker/email-worker/aws/sqs_handler.py b/email-worker/aws/sqs_handler.py similarity index 100% rename from unified-worker/email-worker/aws/sqs_handler.py rename to email-worker/aws/sqs_handler.py diff --git a/unified-worker/email-worker/config.py b/email-worker/config.py similarity index 100% rename from unified-worker/email-worker/config.py rename to email-worker/config.py diff --git a/unified-worker/email-worker/docker-compose.yml b/email-worker/docker-compose.yml similarity index 100% rename from unified-worker/email-worker/docker-compose.yml rename to email-worker/docker-compose.yml diff --git a/unified-worker/email-worker/docs/ARCHITECTURE.md b/email-worker/docs/ARCHITECTURE.md similarity index 100% rename from unified-worker/email-worker/docs/ARCHITECTURE.md rename to email-worker/docs/ARCHITECTURE.md diff --git a/unified-worker/email-worker/docs/CHANGELOG.md b/email-worker/docs/CHANGELOG.md similarity index 100% rename from unified-worker/email-worker/docs/CHANGELOG.md rename to email-worker/docs/CHANGELOG.md diff --git a/unified-worker/email-worker/docs/COMPATIBILITY.md b/email-worker/docs/COMPATIBILITY.md similarity index 100% rename from unified-worker/email-worker/docs/COMPATIBILITY.md rename to email-worker/docs/COMPATIBILITY.md diff --git a/unified-worker/email-worker/docs/MIGRATION.md b/email-worker/docs/MIGRATION.md similarity index 100% rename from unified-worker/email-worker/docs/MIGRATION.md rename to email-worker/docs/MIGRATION.md diff --git a/unified-worker/email-worker/docs/QUICKSTART.md b/email-worker/docs/QUICKSTART.md similarity index 100% rename from unified-worker/email-worker/docs/QUICKSTART.md rename to email-worker/docs/QUICKSTART.md diff --git a/unified-worker/email-worker/docs/README.md b/email-worker/docs/README.md similarity index 100% rename from unified-worker/email-worker/docs/README.md rename to email-worker/docs/README.md diff --git a/unified-worker/email-worker/docs/SUMMARY.md b/email-worker/docs/SUMMARY.md similarity index 100% rename from unified-worker/email-worker/docs/SUMMARY.md rename to email-worker/docs/SUMMARY.md diff --git a/unified-worker/email-worker/domain_poller.py b/email-worker/domain_poller.py similarity index 100% rename from unified-worker/email-worker/domain_poller.py rename to email-worker/domain_poller.py diff --git a/unified-worker/email-worker/domains.txt b/email-worker/domains.txt similarity index 100% rename from unified-worker/email-worker/domains.txt rename to email-worker/domains.txt diff --git a/unified-worker/email-worker/email_processing/__init__.py b/email-worker/email_processing/__init__.py similarity index 100% rename from unified-worker/email-worker/email_processing/__init__.py rename to email-worker/email_processing/__init__.py diff --git a/unified-worker/email-worker/email_processing/blocklist.py b/email-worker/email_processing/blocklist.py similarity index 100% rename from unified-worker/email-worker/email_processing/blocklist.py rename to email-worker/email_processing/blocklist.py diff --git a/unified-worker/email-worker/email_processing/bounce_handler.py b/email-worker/email_processing/bounce_handler.py similarity index 100% rename from unified-worker/email-worker/email_processing/bounce_handler.py rename to email-worker/email_processing/bounce_handler.py diff --git a/unified-worker/email-worker/email_processing/parser.py b/email-worker/email_processing/parser.py similarity index 100% rename from unified-worker/email-worker/email_processing/parser.py rename to email-worker/email_processing/parser.py diff --git a/unified-worker/email-worker/email_processing/rules_processor.py b/email-worker/email_processing/rules_processor.py similarity index 100% rename from unified-worker/email-worker/email_processing/rules_processor.py rename to email-worker/email_processing/rules_processor.py diff --git a/unified-worker/email-worker/health_server.py b/email-worker/health_server.py similarity index 100% rename from unified-worker/email-worker/health_server.py rename to email-worker/health_server.py diff --git a/unified-worker/email-worker/logger.py b/email-worker/logger.py similarity index 100% rename from unified-worker/email-worker/logger.py rename to email-worker/logger.py diff --git a/unified-worker/email-worker/main.py b/email-worker/main.py similarity index 100% rename from unified-worker/email-worker/main.py rename to email-worker/main.py diff --git a/unified-worker/email-worker/metrics/__init__.py b/email-worker/metrics/__init__.py similarity index 100% rename from unified-worker/email-worker/metrics/__init__.py rename to email-worker/metrics/__init__.py diff --git a/unified-worker/email-worker/metrics/prometheus.py b/email-worker/metrics/prometheus.py similarity index 100% rename from unified-worker/email-worker/metrics/prometheus.py rename to email-worker/metrics/prometheus.py diff --git a/unified-worker/email-worker/requirements.txt b/email-worker/requirements.txt similarity index 100% rename from unified-worker/email-worker/requirements.txt rename to email-worker/requirements.txt diff --git a/unified-worker/email-worker/smtp/__init__.py b/email-worker/smtp/__init__.py similarity index 100% rename from unified-worker/email-worker/smtp/__init__.py rename to email-worker/smtp/__init__.py diff --git a/unified-worker/email-worker/smtp/delivery.py b/email-worker/smtp/delivery.py similarity index 100% rename from unified-worker/email-worker/smtp/delivery.py rename to email-worker/smtp/delivery.py diff --git a/unified-worker/email-worker/smtp/pool.py b/email-worker/smtp/pool.py similarity index 100% rename from unified-worker/email-worker/smtp/pool.py rename to email-worker/smtp/pool.py diff --git a/unified-worker/email-worker/unified_worker.py b/email-worker/unified_worker.py similarity index 100% rename from unified-worker/email-worker/unified_worker.py rename to email-worker/unified_worker.py diff --git a/unified-worker/email-worker/worker.py b/email-worker/worker.py similarity index 100% rename from unified-worker/email-worker/worker.py rename to email-worker/worker.py