from django.urls import path
from . import views
from django.views.decorators.csrf import csrf_exempt

urlpatterns = [
    path("redbubbleproductlist/", csrf_exempt(views.GetRedbubbleProductListPageView.as_view())),
    path("redbubbleproductdetail/", csrf_exempt(views.GetRedbubbleProductDetailPageView.as_view()))
    #
]