mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2025-02-16 23:40:33 +03:00
14 lines
312 B
Python
14 lines
312 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class FilesConfig(AppConfig):
|
|
name = "akarpov.files"
|
|
verbose_name = _("Files")
|
|
|
|
def ready(self):
|
|
try:
|
|
import akarpov.files.signals # noqa F401
|
|
except ImportError:
|
|
pass
|