Files
bakery-ia/services/auth/app/services/messaging.py
Urtzi Alfaro 5bb3e93da4 first commit
2025-07-17 13:54:51 +02:00

9 lines
219 B
Python

"""
Messaging service for auth service
"""
from shared.messaging.rabbitmq import RabbitMQClient
from app.core.config import settings
# Global message publisher
message_publisher = RabbitMQClient(settings.RABBITMQ_URL)