visrecall/WebInterface/Back-end/mysite/new5/urls.py

7 lines
118 B
Python
Raw Normal View History

2022-07-29 14:22:57 +02:00
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]