mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -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')
|