8 lines
218 B
Python
8 lines
218 B
Python
|
|
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'),
|
||
|
|
]
|