10 lines
275 B
Python
10 lines
275 B
Python
|
from django.apps import AppConfig
|
||
|
from django.utils.translation import ugettext_lazy as _
|
||
|
|
||
|
from django.conf import settings
|
||
|
|
||
|
class SyntheaConfig(AppConfig):
|
||
|
name = 'apps.synthea'
|
||
|
label = 'synthea'
|
||
|
verbose_name = _('Synthea')
|
||
|
verbose_name_plural = _('Synthea')
|