Files
edx-platform/openedx/core/djangoapps/coursegraph/apps.py
Adam Palay 69d76b69d7 write courses to neo4j in background tasks (EDUCATOR-583)
move tasks into tasks.py

add more logging
2017-06-12 10:44:27 -04:00

17 lines
314 B
Python

"""
Coursegraph Application Configuration
Signal handlers are connected here.
"""
from django.apps import AppConfig
class CoursegraphConfig(AppConfig):
"""
AppConfig for courseware app
"""
name = 'openedx.core.djangoapps.coursegraph'
from . import tasks # pylint: disable=unused-variable