2026-02-21 18:38:19 +00:00
|
|
|
"""
|
|
|
|
|
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
|
2026-02-24 16:19:15 +00:00
|
|
|
from . import example_tasks # noqa: F401
|
2026-02-21 18:38:19 +00:00
|
|
|
|
|
|
|
|
# Re-export tasks for easier imports
|
2026-02-24 16:19:15 +00:00
|
|
|
from .example_tasks import ( # noqa: F401
|
2026-02-21 18:38:19 +00:00
|
|
|
divide_numbers,
|
2026-02-24 16:19:15 +00:00
|
|
|
print_hello,
|
2026-02-21 18:38:19 +00:00
|
|
|
send_daily_report,
|
|
|
|
|
update_product_statistics,
|
2026-02-24 16:19:15 +00:00
|
|
|
)
|