example-of-crud-in-django-w.../app/library/apps.py

7 lines
149 B
Python
Raw Normal View History

2021-07-05 15:56:53 +02:00
from django.apps import AppConfig
class LibrosConfig(AppConfig):
2021-07-13 18:30:31 +02:00
default_auto_field = "django.db.models.BigAutoField"
2021-07-14 16:19:03 +02:00
name = "app.library"