9 lines
144 B
Python
9 lines
144 B
Python
from django.urls import include, path
|
|
|
|
from .views import *
|
|
|
|
app_name = 'homes'
|
|
|
|
urlpatterns = [
|
|
path('search/', SearchAPIView.as_view()),
|
|
] |