ft_transcendence/srcs/profiles/urls.py

7 lines
140 B
Python
Raw Normal View History

2023-11-23 10:43:30 -05:00
from django.urls import path
from . import views
urlpatterns = [
path("<int:pk>", views.ProfileView.as_view(), name="profile_page"),
]