fix - pos sharing on agc bug fixed influently

This commit is contained in:
2025-12-22 09:42:22 +03:30
parent 4096dbbd6e
commit 65a826ab7f
8 changed files with 115 additions and 65 deletions

View File

@@ -1,5 +1,6 @@
from django.urls import path, include
from rest_framework import routers
from .api import HerdViewSet, RancherViewSet
router = routers.DefaultRouter()
@@ -8,4 +9,4 @@ router.register('rancher', RancherViewSet, basename='rancher')
urlpatterns = [
path('api/v1/', include(router.urls))
]
]