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'
__all__ = ['UsersConfig']