16 lines
365 B
Python
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
|