11 lines
386 B
Python
11 lines
386 B
Python
|
|
from django.urls import path
|
||
|
|
# from .views import ScanAPIView, ScanAspuAPIView, GetManagementAPIView
|
||
|
|
from .views import GetManagementAPIView
|
||
|
|
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
# path('api/scan/', ScanAPIView.as_view(), name='scan'),
|
||
|
|
# path('api/scan_aspu/', ScanAspuAPIView.as_view(), name='scan_aspu'),
|
||
|
|
path('api/get_management/', GetManagementAPIView.as_view(), name='get_management'),
|
||
|
|
]
|