mirror of
https://github.com/tanrax/python-api-frameworks-benchmark
synced 2026-01-10 07:13:37 +01:00
11 lines
225 B
Python
11 lines
225 B
Python
"""Users app configuration."""
|
|
|
|
from __future__ import annotations
|
|
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class UsersConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "django_project.users"
|