Files
chat/venv/lib/python3.12/site-packages/celery/loaders/app.py
Andrew K. Choi ddce9f5125
All checks were successful
continuous-integration/drone/push Build is passing
Major fixes and new features
2025-09-25 15:51:48 +09:00

9 lines
199 B
Python

"""The default loader used with custom app instances."""
from .base import BaseLoader
__all__ = ('AppLoader',)
class AppLoader(BaseLoader):
"""Default loader used when an app is specified."""