Skip to content

Commit 939d0d6

Browse files
committed
Implement core application config
1 parent ab03949 commit 939d0d6

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

policylens/apps/core/apps.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# path: policylens/apps/core/apps.py
2+
"""Core application configuration."""
3+
4+
from django.apps import AppConfig
5+
6+
7+
class CoreConfig(AppConfig):
8+
"""Config for core app."""
9+
10+
default_auto_field = "django.db.models.BigAutoField"
11+
name = "apps.core"

0 commit comments

Comments
 (0)