Source code for controller.sentry.apps

"""Sentry App."""
from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


[docs]class SentryConfig(AppConfig): """Sentry App Config.""" name = "controller.sentry" verbose_name = _("sentry")