Mosqkiller-API/apps/counter/api/urls.py

9 lines
275 B
Python

from django.urls import path
from .views import DeviceCountListAPIView, DeviceInfoListAPIView
app_name = 'counter-api'
urlpatterns = [
path('count/', DeviceCountListAPIView.as_view(), name='count'),
path('device/', DeviceInfoListAPIView.as_view(), name='device'),
]