mirror of
https://github.com/IRBorisov/ConceptPortal.git
synced 2025-06-26 04:50:36 +03:00
9 lines
235 B
Python
9 lines
235 B
Python
''' Application: User profile and Authentification. '''
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
''' Application config. '''
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.users'
|