7 lines
163 B
Python
7 lines
163 B
Python
from django.apps import AppConfig
|
|
from django.db.models import AutoField
|
|
|
|
|
|
class AuthEnsConfig(AppConfig):
|
|
name = "authens"
|
|
default_auto_field = AutoField
|