from django.urls import path
from .views import (
DeviceInfoMobileListAPIView
)
app_name = 'counter-mobile-api'
urlpatterns = [
path('device/', DeviceInfoMobileListAPIView.as_view(), name='logs'),
]