14 lines
433 B
Python
14 lines
433 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
|
|
# fmt: off
|
|
# noqa: F401
|
|
from .example_tasks import (divide_numbers, print_hello, # noqa: F401
|
|
send_daily_report, update_product_statistics)
|
|
|
|
# fmt: on
|