18 lines
341 B
Python
18 lines
341 B
Python
"""
|
|
Module tasks pour les jobs RQ.
|
|
"""
|
|
|
|
from pricewatch.app.tasks.scrape import scrape_product
|
|
from pricewatch.app.tasks.scheduler import (
|
|
RedisUnavailableError,
|
|
ScrapingScheduler,
|
|
check_redis_connection,
|
|
)
|
|
|
|
__all__ = [
|
|
"scrape_product",
|
|
"ScrapingScheduler",
|
|
"RedisUnavailableError",
|
|
"check_redis_connection",
|
|
]
|