device_group_url.py 293 B

12345678910
  1. # @Author : Rocky
  2. # @File : device_group_url.py
  3. # @Time : 2025/1/22 9:47
  4. from django.urls import re_path
  5. from Controller.DeviceManagement import DeviceGroupController
  6. urlpatterns = [
  7. re_path(r'^manage/(?P<operation>.*)$', DeviceGroupController.DeviceGroupView.as_view()),
  8. ]