from django.urls import path
from api.property_api.featured_listings.views.featured_listings_views import (
    FeaturedListingsListCreateAPIView,
    FeaturedListingsDetailAPIView
)
from api.property_api.property.views.property_search_views import PropertySearchView

urlpatterns = [
    path("featured/", FeaturedListingsListCreateAPIView.as_view(), name="featured-list-create"),
    path("featured/<int:pk>/", FeaturedListingsDetailAPIView.as_view(), name="featured-detail"),
]
