15 lines
390 B
Python
15 lines
390 B
Python
"""
|
|
Celery tasks for the Crafting Shop application.
|
|
Tasks are organized by domain/functionality.
|
|
"""
|
|
|
|
# Import all task modules here to ensure they're registered with Celery
|
|
from . import example_tasks # noqa: F401
|
|
|
|
# Re-export tasks for easier imports
|
|
from .example_tasks import ( # noqa: F401
|
|
divide_numbers,
|
|
print_hello,
|
|
send_daily_report,
|
|
update_product_statistics,
|
|
)
|