pos device login depoyment

This commit is contained in:
2025-08-17 15:11:58 +03:30
parent d2fa1b264f
commit c2318b45c5
11 changed files with 159 additions and 14 deletions

View File

@@ -1,9 +1,7 @@
from django.urls import path, include
from rest_framework.routers import DefaultRouter
from .viewsets.device import TestViewSet
router = DefaultRouter()
router.register('test', TestViewSet, basename='test')
urlpatterns = [
path('v1/', include(router.urls))