ft_transcendence/frontend/urls.py

8 lines
133 B
Python
Raw Normal View History

2023-11-21 13:15:16 -05:00
from django.urls import path, re_path
from .views import index_view
urlpatterns = [
re_path(r'^', index_view ,name="index"),
]