first commit

This commit is contained in:
Beyhan Oğur
2026-04-26 22:27:56 +03:00
commit d9f1ea341e
1021 changed files with 70645 additions and 0 deletions

7
reviews/urls.py Normal file
View File

@@ -0,0 +1,7 @@
from django.urls import path
from .views import CreateRatingView, ListRatingsView
urlpatterns = [
path('rate/', CreateRatingView.as_view(), name='create-rating'),
path('list/', ListRatingsView.as_view(), name='list-ratings'),
]