Gallery-Archivist/backend/api/user/urls.py

8 lines
141 B
Python
Raw Normal View History

2025-01-28 22:16:56 +01:00
from django.urls import path
from .views import ProfileView
urlpatterns = [
path("profile/", ProfileView.as_view(), name="profile"),
]