Files
test_OgureNG/backend-django/backend/apps.py
2022-11-08 21:19:51 +01:00

14 lines
304 B
Python

"""
Ce fichier est créé pour inclure toute configuration de l'application.
"""
from django.apps import AppConfig
class BackendConfig(AppConfig):
"""Cette classe permet de configurer les variables du backend.
"""
default_auto_field = 'django.db.models.BigAutoField'
name = 'backend'