11 lines
226 B
Python
11 lines
226 B
Python
"""
|
|
complaints app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ComplaintsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.complaints'
|
|
verbose_name = 'Complaints'
|