123456789101112131415 |
- # -*- encoding: utf-8 -*-
- """
- @File : loocam_url.py
- @Time : 2022/5/20 11:44
- @Author : stephen
- @Email : zhangdongming@asj6.wecom.work
- @Software: PyCharm
- """
- from django.conf.urls import url
- from SensorGateway import EquipmentFamilyController
- urlpatterns = [
- url(r'^sensor/gateway/(?P<operation>.*)$', EquipmentFamilyController.EquipmentFamilyView.as_view()),
- ]
|