chore(app): add base app for config management

!12 closes #35
This commit is contained in:
2024-05-27 12:46:28 +09:30
parent 51e52e69a4
commit 174f66a397
7 changed files with 35 additions and 0 deletions

View File

@ -0,0 +1,9 @@
from django.urls import path
from .views import ConfigIndex
app_name = "Config Management"
urlpatterns = [
path('', ConfigIndex.as_view(), name='Config Management'),
]