poulpe/api/apps.py
Aurélien Delobelle e1b4dc1651 Update AppConfigs
2017-08-19 15:36:45 +02:00

7 lines
165 B
Python

from django.apps import AppConfig
from django.utils.translation import ugettext_lazy as _
class APIConfig(AppConfig):
name = 'api'
verbose_name = _("API")