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