17 lines
314 B
Python
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
|