9
app/config_management/urls.py
Normal file
9
app/config_management/urls.py
Normal 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'),
|
||||
|
||||
]
|
||||
Reference in New Issue
Block a user