bookpfe/recherche/urls.py
2020-04-06 11:22:59 +02:00

9 lines
111 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]