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

5
backend/apps/urls.py Normal file
View File

@@ -0,0 +1,5 @@
from django.urls import include, path
urlpatterns = [
path("shelves", include("apps.shelves.urls"))
]