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