11 lines
248 B
Python
11 lines
248 B
Python
"""
|
|
px_action_center app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class PxActionCenterConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.px_action_center'
|
|
verbose_name = 'PX Action Center'
|