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

18 lines
365 B
Python

"""
Django AppConfig module for the Gating app
"""
from django.apps import AppConfig
class GatingConfig(AppConfig):
"""
Django AppConfig class for the gating app
"""
name = 'gating'
def ready(self):
# Import signals to wire up the signal handlers contained within
from gating import signals # pylint: disable=unused-import