backend/scan/urls.py
2025-03-23 21:24:08 +10:00

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'),
]