mirror of
https://github.com/coddingtonbear/django-mailbox.git
synced 2026-07-09 22:38: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")
|