11 lines
227 B
Python
11 lines
227 B
Python
"""
|
|
callcenter app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class CallcenterConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.callcenter'
|
|
verbose_name = 'Call Center'
|