13 lines
311 B
Python
13 lines
311 B
Python
from django.urls import path
|
|
|
|
from engine.core.views import (
|
|
BuyAsBusinessView,
|
|
GlobalSearchView,
|
|
)
|
|
|
|
app_name = "core"
|
|
|
|
urlpatterns = [
|
|
path("search/", GlobalSearchView.as_view(), name="global_search"),
|
|
path("orders/buy_as_business/", BuyAsBusinessView.as_view(), name="request_cursed_url"),
|
|
]
|