42_ft_transcendence/django/frontend/urls.py
2024-05-14 08:50:37 +02:00

8 lines
133 B
Python

from django.urls import path, re_path
from .views import index_view
urlpatterns = [
re_path(r'^', index_view ,name="index"),
]