9 lines
196 B
Python
9 lines
196 B
Python
from django.apps import AppConfig
|
|
|
|
|
|
class IntegrationsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.integrations'
|
|
verbose_name = 'Integrations'
|
|
|