mirror of
https://github.com/Alexander-D-Karpov/akarpov
synced 2024-11-30 23:33:43 +03:00
14 lines
308 B
Python
14 lines
308 B
Python
from django.apps import AppConfig
|
|
from django.utils.translation import gettext_lazy as _
|
|
|
|
|
|
class BlogConfig(AppConfig):
|
|
name = "akarpov.blog"
|
|
verbose_name = _("Blog")
|
|
|
|
def ready(self):
|
|
try:
|
|
import akarpov.blog.signals # noqa F401
|
|
except ImportError:
|
|
pass
|