14 lines
304 B
Python
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'
|