|
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'),
|
|
] |