ft_transcendence/profiles/urls.py

7 lines
142 B
Python
Raw Normal View History

2023-10-24 12:42:43 -04:00
from django.urls import path
from . import views
urlpatterns = [
path("<str:uuid>", views.ProfilePage.as_view(), name="profile_page"),
]