9 lines
207 B
Python
Executable File
9 lines
207 B
Python
Executable File
"""
|
|
Module tasks pour les jobs RQ.
|
|
"""
|
|
|
|
from pricewatch.app.tasks.scrape import scrape_product
|
|
from pricewatch.app.tasks.scheduler import ScrapingScheduler
|
|
|
|
__all__ = ["scrape_product", "ScrapingScheduler"]
|