9 lines
137 B
Python
9 lines
137 B
Python
|
from django.apps import AppConfig
|
||
|
|
||
|
|
||
|
class SrsConfig(AppConfig):
|
||
|
name = 'srs'
|
||
|
|
||
|
def ready(self):
|
||
|
import srs.signals #noqa
|