1234567891011121314 |
- # coding=utf-8
- from django.conf.urls import url,include
- from apps.tenant.device.views import DeviceViewSet
- from rest_framework.routers import SimpleRouter
- urlpatterns = [
- ]
- # 创建路由器并注册我们的视图。
- router = SimpleRouter()
- router.register(r'', DeviceViewSet)
- urlpatterns += router.urls
|