mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-05-07 11:49:48 -05:00
10 lines
198 B
Python
10 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')
|