Files
edx-platform/lms/djangoapps/course_goals/apps.py
2020-05-01 19:42:15 +05:00

22 lines
406 B
Python

"""
Course Goals Application Configuration
Signal handlers are connected here.
"""
from django.apps import AppConfig
class CourseGoalsConfig(AppConfig):
"""
Application Configuration for Course Goals.
"""
name = 'lms.djangoapps.course_goals'
def ready(self):
"""
Connect signal handlers.
"""
from . import handlers # pylint: disable=unused-import