18 lines
422 B
Python
18 lines
422 B
Python
"""
|
|
Programs Configuration
|
|
"""
|
|
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ProgramsConfig(AppConfig):
|
|
"""
|
|
Default configuration for the "openedx.core.djangoapps.programs" Django application.
|
|
"""
|
|
name = 'openedx.core.djangoapps.programs'
|
|
|
|
def ready(self):
|
|
# noinspection PyUnresolvedReferences
|
|
from . import signals, tasks # lint-amnesty, pylint: disable=unused-import, unused-variable
|