add: add product and category models

This commit is contained in:
behruz-dev
2025-08-28 16:43:33 +05:00
parent 53042ed25e
commit 8e4f79d856
32 changed files with 418 additions and 7 deletions

View File

@@ -1,6 +1,8 @@
from django.urls import path, include
from rest_framework_simplejwt.views import TokenObtainPairView
urlpatterns = [
path('login/', TokenObtainPairView.as_view()),
]