9 lines
198 B
Python
9 lines
198 B
Python
|
|
from __future__ import annotations
|
||
|
|
|
||
|
|
from django.apps import AppConfig
|
||
|
|
|
||
|
|
|
||
|
|
class ProjectsConfig(AppConfig):
|
||
|
|
default_auto_field = "django.db.models.BigAutoField"
|
||
|
|
name = "control_plane.projects"
|