mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2026-01-18 03:15:50 +01:00
9 lines
198 B
Python
9 lines
198 B
Python
from django.apps import AppConfig
|
|
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class PaperlessMailConfig(AppConfig):
|
|
name = 'paperless_mail'
|
|
|
|
verbose_name = _('Paperless mail')
|