mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-10 06:48:19 +02:00
7 lines
184 B
Python
7 lines
184 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class MailBoxConfig(AppConfig):
|
|
name = "django_mailbox"
|
|
verbose_name = _("Mail Box")
|