9 lines
226 B
Python
9 lines
226 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class PresentationsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.presentations'
|
|
verbose_name = 'Presentations'
|
|
label = 'presentations'
|