# Stream Processor Django Application
# This package contains the main Django project configuration and settings

# Import Celery app to ensure it's loaded when Django starts
from .celery import app as celery_app

# Make Celery app available for Django autodiscovery
__all__ = ('celery_app',)
