synthea_webservice/webservice/apps/synthea/apps.py

10 lines
275 B
Python
Raw Normal View History

2020-11-13 15:31:14 +01:00
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')