mirror of
https://github.com/RobbieHan/sandboxMP.git
synced 2026-02-04 03:13:15 +08:00
10 lines
144 B
Python
10 lines
144 B
Python
from django.urls import path
|
|
|
|
from .views import CmdbView
|
|
|
|
app_name = 'cmdb'
|
|
|
|
urlpatterns = [
|
|
path('', CmdbView.as_view(), name='index'),
|
|
]
|