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