Source code for photos.apps

from django.apps import AppConfig
from django.utils.translation import gettext_lazy as _


[docs]class PhotosConfig(AppConfig): name = "photos" verbose_name = _("Photos")
[docs] def ready(self): super().ready() """Imports the signals when the app is ready""" from . import signals