This commit is contained in:
liqiang
2025-09-19 10:49:07 +08:00
parent 2d36b4357e
commit ab1e0268d1
42 changed files with 2520 additions and 2582 deletions

View File

@@ -0,0 +1,15 @@
from django.urls import path
from rest_framework import routers
from plugins.code_info.views.scan_data import ScanDataViewSet
from plugins.code_info.views.scan_record import ScanRecordViewSet
route_url = routers.SimpleRouter()
route_url.register(r'scan_data', ScanDataViewSet,basename='scan_data')
route_url.register(r'scan_record', ScanRecordViewSet)
urlpatterns = [
]
urlpatterns += route_url.urls