15 lines
304 B
Python
15 lines
304 B
Python
"""
|
|
Programs Configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ProgramsConfig(AppConfig):
|
|
"""
|
|
Default configuration for the "openedx.core.djangoapps.programs" Django application.
|
|
"""
|
|
name = u'openedx.core.djangoapps.programs'
|
|
|
|
def ready(self):
|
|
from . import signals
|