11 lines
234 B
Python
11 lines
234 B
Python
"""
|
|
integrations app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class IntegrationsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.integrations'
|
|
verbose_name = 'Integrations'
|