Source code for reader.apps

"""App configuration."""

from django.apps import AppConfig


[docs]class ReaderConfig(AppConfig): """Configuration for the users app.""" #: The name of the app. name = 'reader'
[docs] def ready(self): """Register the :mod:`~reader.receivers` when the app is ready.""" __import__('reader.receivers')
__all__ = ['ReaderConfig']