Files
edx-platform/lms/djangoapps/gating/apps.py
2016-01-28 14:05:20 -05:00

16 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-variable