adiciona views, templates, urls e documentos do elastic search

This commit is contained in:
root
2025-03-07 07:10:13 +01:00
parent d3081f81f3
commit 1cd93f7955
19 changed files with 741 additions and 10 deletions

7
diarios/urls.py Normal file
View File

@ -0,0 +1,7 @@
from django.urls import path
from .views import search_view, spellcheck_view
urlpatterns = [
path('pesquisa/', search_view, name='search_view'),
path('spellcheck/', spellcheck_view, name='spellcheck_view'),
]