from celery_config import celery

# Export the celery instance for other modules to import
__all__ = ["celery"]

# Use autodiscover_tasks to find tasks in the tasks package
celery.autodiscover_tasks(["tasks"])
