# -*- coding: utf-8 -*- from django.urls import path from . import views app_name = 'pos' urlpatterns = [ path('', views.pos_terminal, name='terminal'), path('api/showcase-items/', views.showcase_items_api, name='showcase-items-api'), path('api/get-showcases/', views.get_showcases_api, name='get-showcases-api'), path('api/showcase-kits/', views.get_showcase_kits_api, name='showcase-kits-api'), path('api/create-temp-kit/', views.create_temp_kit_to_showcase, name='create-temp-kit-api'), ]