10 lines
185 B
Python
10 lines
185 B
Python
from django.urls import path
|
|
from .views import ConeSearchView
|
|
|
|
urlpatterns = [
|
|
path(
|
|
'cone_search/',
|
|
ConeSearchView.as_view(),
|
|
name = 'cone_search'
|
|
),
|
|
] |