-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathapps.py
More file actions
24 lines (19 loc) · 785 Bytes
/
apps.py
File metadata and controls
24 lines (19 loc) · 785 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
"""Base app config."""
# =============================================================================
# IMPORTS
# =============================================================================
# Django
from django.apps import AppConfig
# =============================================================================
# ALL DECLARATION
# =============================================================================
__all__ = (
"ProjectManagerConfig",
)
# =============================================================================
# APPLICATION CONFIG
# =============================================================================
class ProjectManagerConfig(AppConfig):
"""Project Manager app config."""
name = "project_manager"
verbose_name = "Project Manager"