12 lines
506 B
Python
12 lines
506 B
Python
|
|
from django.urls import path
|
||
|
|
from . import api_views
|
||
|
|
|
||
|
|
urlpatterns = [
|
||
|
|
# 客户端上报接口
|
||
|
|
path('checkin/', api_views.CheckInAPIView.as_view(), name='api-checkin'),
|
||
|
|
|
||
|
|
# 查询接口
|
||
|
|
path('services/', api_views.ServiceListAPIView.as_view(), name='api-service-list'),
|
||
|
|
path('services/<int:service_id>/history/', api_views.ServiceHistoryAPIView.as_view(), name='api-service-history'),
|
||
|
|
path('status-summary/', api_views.StatusSummaryAPIView.as_view(), name='api-status-summary'),
|
||
|
|
]
|