Source code for users.apps """Django apps module which defines the app configuration.""" from django.apps import AppConfig [docs] class UsersConfig(AppConfig): """App configuration for the users app.""" [docs] default_auto_field = 'django.db.models.BigAutoField' [docs] name = 'users'