Files
edx-platform/common/djangoapps/enrollment/apps.py
2018-08-02 11:43:17 -04:00

21 lines
387 B
Python

"""
Enrollment Application Configuration
Signal handlers are connected here.
"""
from django.apps import AppConfig
class EnrollmentConfig(AppConfig):
"""
Application configuration for enrollments.
"""
name = u'enrollment'
def ready(self):
"""
Connect signal handlers.
"""
from . import handlers # pylint: disable=unused-variable