Source code for marsha.core.apps

"""Defines the django app config for the ``core`` app."""

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


[docs]class CoreConfig(AppConfig): """Django app config for the ``core`` app.""" name: str = "marsha.core" verbose_name: str = _("Marsha")