Files
centurion_erp/app/config_management/urls.py
2024-05-27 12:46:52 +09:30

10 lines
179 B
Python

from django.urls import path
from .views import ConfigIndex
app_name = "Config Management"
urlpatterns = [
path('', ConfigIndex.as_view(), name='Config Management'),
]