17 lines
342 B
Python
17 lines
342 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",
|
|
),
|
|
]
|