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

15 lines
361 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
from . import example_tasks
# Re-export tasks for easier imports
from .example_tasks import (
print_hello,
divide_numbers,
send_daily_report,
update_product_statistics,
)