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