10 lines
193 B
Python
10 lines
193 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class LibraryConfig(AppConfig):
|
|
default_auto_field = "django.db.models.BigAutoField"
|
|
name = "library"
|
|
|
|
|
|
default_app_config = "library.LibraryConfig"
|