Ivy-Backend/ivy/products/urls.py

14 lines
397 B
Python
Raw Normal View History

2023-03-05 21:56:48 +08:00
from django.urls import include, path
from rest_framework import routers
from . import views
router = routers.DefaultRouter()
router.register(r'products', views.ProductViewSet)
2023-03-07 17:23:39 +08:00
router.register(r'logs', views.LogViewSet)
2023-03-05 21:56:48 +08:00
# Wire up our API using automatic URL routing.
# Additionally, we include login URLs for the browsable API.
urlpatterns = [
path('', include(router.urls)),
]