6 lines
113 B
Python
6 lines
113 B
Python
from django.urls import path, include
|
|
|
|
urlpatterns = [
|
|
path('api/v1/', include('apps.search.api.v1.urls'))
|
|
]
|