Source code for groups.apps

"""App configuration."""

from django.apps import AppConfig


[docs]class GroupsConfig(AppConfig): """Configuration for the groups app.""" #: The name of the app. name = 'groups'
__all__ = ['GroupsConfig']