Added viewsets for shelves

This commit is contained in:
maciejrusek
2026-03-10 22:52:39 +01:00
parent 624ef3ca16
commit 271337afcb
7 changed files with 52 additions and 2 deletions

View File

@@ -1,6 +1,7 @@
from django.contrib import admin
from django.urls import path
from django.urls import path, include
urlpatterns = [
path("admin/", admin.site.urls),
path("api/", include("apps.urls"))
]