7 lines
192 B
Python
7 lines
192 B
Python
from django.apps import AppConfig
|
|
from django.contrib.auth import get_user_model
|
|
|
|
|
|
class AccountConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'account' |