from django.urls import path
from package_points.views.package_points_views import PackagePointsListCreateAPIView, PackagePointsDetailAPIView

urlpatterns = [
    path("packages/points", PackagePointsListCreateAPIView.as_view(), name="package-points-list-create"),
    path("packages/points/<int:pk>", PackagePointsDetailAPIView.as_view(), name="package-points-detail"),
]
