Source code for users.apps

"""App configuration."""

from django.apps import AppConfig


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