Loading...
Searching...
No Matches
Go to the documentation of this file. 1from django.urls
import path,include
2from rest_framework.routers
import DefaultRouter
3from .views
import ProductoViewSet
5router = DefaultRouter()
6router.register(
'', ProductoViewSet )
11 path(
'', include(router.urls)),