kanban-app/backend/app/celery/tasks/__init__.py

15 lines
433 B
Python
Raw Normal View History

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-25 18:32:57 +00:00
# fmt: off
# noqa: F401
from .example_tasks import (divide_numbers, print_hello, # noqa: F401
send_daily_report, update_product_statistics)
# fmt: on