8 lines
232 B
Python
8 lines
232 B
Python
# /backend/modules/crm/apps.py
|
|
|
|
from django.apps import AppConfig
|
|
|
|
class FleetConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'modules.crm'
|
|
verbose_name = "Customer Relationship Management" |