from django.urls import path
from producers_offer.views.producers_offer_views import ProducersOfferListCreateAPIView, ProducersOfferDetailAPIView

urlpatterns = [
    path("producers/offer/", ProducersOfferListCreateAPIView.as_view(), name="producers-offer-list-create"),
    path("producers/offer/<int:pk>/", ProducersOfferDetailAPIView.as_view(), name="producers-offer-detail"),
]
