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