10 lines
214 B
Python
Executable File
10 lines
214 B
Python
Executable File
from django.apps import AppConfig
|
|
|
|
|
|
class AccountsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'accounts'
|
|
|
|
def ready(self):
|
|
from .signals import create_profile
|