9 lines
219 B
Python
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) |