11 lines
218 B
Python
11 lines
218 B
Python
"""
|
|
projects app configuration
|
|
"""
|
|
from django.apps import AppConfig
|
|
|
|
|
|
class ProjectsConfig(AppConfig):
|
|
default_auto_field = 'django.db.models.BigAutoField'
|
|
name = 'apps.projects'
|
|
verbose_name = 'Projects'
|