17 lines
364 B
Python
17 lines
364 B
Python
"""
|
|
Workers module.
|
|
|
|
This module provides background workers for processing
|
|
asynchronous tasks from RabbitMQ queues.
|
|
"""
|
|
|
|
from app.workers.scraping_worker import ScrapingWorker
|
|
from app.workers.sentiment_worker import SentimentWorker
|
|
from app.workers.energy_worker import EnergyWorker
|
|
|
|
__all__ = [
|
|
'ScrapingWorker',
|
|
'SentimentWorker',
|
|
'EnergyWorker'
|
|
]
|