9 lines
145 B
Python
9 lines
145 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class SettingsConfig(AppConfig):
|
|
name = 'settings'
|
|
|
|
def ready(self):
|
|
import settings.signals
|