11 lines
238 B
Python
11 lines
238 B
Python
"""
|
|
organizations app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class OrganizationsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.organizations'
|
|
verbose_name = 'Organizations'
|