Files
2024-03-20 16:15:52 -04:00

19 lines
369 B
Python

"""
LMS CCX application configuration
Signal handlers are connected here.
"""
from django.apps import AppConfig
class CCXConfig(AppConfig):
"""
Application Configuration for CCX.
"""
name = 'lms.djangoapps.ccx'
def ready(self):
"""
Connect signal handlers.
"""
from . import tasks # pylint: disable=unused-import