from django.urls import path
from producers_promoted_products.views.producers_promoted_products_views import ProducersPromotedProductsListCreateAPIView, ProducersPromotedProductsDetailAPIView

urlpatterns = [
    path("producers/promoted/products/", ProducersPromotedProductsListCreateAPIView.as_view(), name="producers-promoted-products-list-create"),
    path("producers/promoted/products/<int:pk>/", ProducersPromotedProductsDetailAPIView.as_view(), name="producers-promoted-products-detail"),
]
