Feat: [#71] atlas search를 활용한 검색 기능 구현 완료

This commit is contained in:
sm4640
2025-07-27 23:50:02 +09:00
parent 8d7c2aa48b
commit 108eed65dd
11 changed files with 188 additions and 0 deletions

9
homes/urls.py Normal file
View File

@@ -0,0 +1,9 @@
from django.urls import include, path
from .views import *
app_name = 'homes'
urlpatterns = [
path('search/', SearchAPIView.as_view()),
]