Skip to content

Commit

Permalink
Update searchHandler.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ELHart05 authored Aug 17, 2024
1 parent 33f303b commit 9be6340
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion code/handlers/searchHandler.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
from services.searchService import search_service
from services.searchService import query_search_service

async def nlp_search_handler(query,userID):
result = search_service(query,userID)
Expand All @@ -7,4 +8,4 @@ async def nlp_search_handler(query,userID):

async def query_search_handler(query, tags, userID):
result = query_search_service(query, tags, userID)
return result
return result

0 comments on commit 9be6340

Please sign in to comment.