12345678910 |
- # @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<operation>.*)$', DeviceGroupController.DeviceGroupView.as_view()),
- ]
|